minimonolith 0.14.1 → 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -154,9 +154,11 @@ For SQLite:
|
|
|
154
154
|
```makefile
|
|
155
155
|
MM_API_DB_DATABASE=<your_database_name>
|
|
156
156
|
MM_API_DB_DIALECT=sqlite
|
|
157
|
-
|
|
157
|
+
MM_API_DB_STORAGE=:memory: # For in-memory SQLite database
|
|
158
158
|
# Or
|
|
159
|
-
|
|
159
|
+
MM_API_DB_STORAGE=path/to/your/sqlite/file.db # For file-based SQLite database
|
|
160
|
+
MM_API_LOCAL_ENV=true
|
|
161
|
+
MM_API_PROD_ENV=false
|
|
160
162
|
```
|
|
161
163
|
|
|
162
164
|
Make sure to replace the placeholders with your actual database credentials. The `MM_API_LOCAL_ENV` variable is used to allow Sequelize to alter table structure automatically when working locally, while the `MM_API_PROD_ENV` variable controls logging of secret credentials for debugging purposes in non-production environments.
|