You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 4, 2024. It is now read-only.
docs(core): add mkdocs for documentation site (#10)
added and configured mkdocs for documentation site
added and configured typedoc for exporting api references as markdown files inside mkdocs's docs_dir
added `ci.yml` in github workflow to deploy documentation site on every push to master branch.
GH-9
This is a loopback4 extension that provides Sequelize's query builder at repository level in any loopback 4 application. It has zero learning curve as it follows similar interface as `DefaultCrudRepository`. For relational databases, Sequelize is a popular ORM of choice.
6
8
7
9
For pending features, refer to the [Limitations](#limitations) section below.
> You can watch a video overview of this extension by [clicking here](https://youtu.be/ZrUxIk63oRc).
32
34
35
+
<!-- tutorial-start -->
36
+
33
37
Both newly developed and existing projects can benefit from the extension by simply changing the parent classes in the target Data Source and Repositories.
34
38
35
39
### Step 1: Configure DataSource
36
40
37
41
Change the parent class from `juggler.DataSource` to `SequelizeDataSource` like below.
@@ -104,6 +108,8 @@ An example of the filter object might look like this to fetch the books who cont
104
108
}
105
109
```
106
110
111
+
<!-- tutorial-end -->
112
+
107
113
## Debug strings reference
108
114
109
115
There are three built-in debug strings available in this extension to aid in debugging. To learn more about how to use them, see [this page](https://loopback.io/doc/en/lb4/Setting-debug-strings.html).
@@ -163,3 +169,5 @@ Code of conduct guidelines [here](https://github.com/sourcefuse/loopback4-sequel
0 commit comments