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
# Change the value of DB_TYPE in .env file to one of the follwing
156
+
DB_TYPE=postgres
157
+
DB_TYPE=mysql
158
+
DB_TYPE=sqlite
159
+
DB_TYPE=mariadb
160
+
DB_TYPE=mssql
161
+
DB_TYPE=db2
162
+
DB_TYPE=oracle
163
+
```
164
+
### step 2
165
+
```sh
166
+
# Install one of the related packge:
167
+
npm install --save pg pg-hstore # for Postgres
168
+
npm install --save mysql2 # for Mysql
169
+
npm install --save mariadb # for Mariadb
170
+
npm install --save sqlite3 # for Sqlite
171
+
npm install --save tedious # for Microsoft SQL Server (mssql)
172
+
npm install --save oracledb # for Oracle
173
+
```
174
+
for more details please refer [Sequelize](https://sequelize.org/docs/v6/getting-started/)
151
175
## API Documentation
152
176
153
177
To view the list of available APIs and their specifications, run the server and go to `http://localhost:5000/api/v1/docs` in your browser. This documentation page is automatically generated using the [swagger](https://swagger.io/) definitions written as comments in the route files.
@@ -156,16 +180,20 @@ To view the list of available APIs and their specifications, run the server and
0 commit comments