minimonolith 0.14.2 → 0.14.4
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 +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -139,12 +139,12 @@ To set up authentication for the database, you need to provide the necessary env
|
|
|
139
139
|
For MySQL:
|
|
140
140
|
|
|
141
141
|
```makefile
|
|
142
|
+
MM_API_DB_DIALECT=mysql
|
|
143
|
+
MM_API_DB_HOST=<your_database_endpoint>
|
|
144
|
+
MM_API_DB_PORT=<your_database_port>
|
|
145
|
+
MM_API_DB_DATABASE=<your_database_name>
|
|
142
146
|
MM_API_DB_USERNAME=<your_database_username>
|
|
143
147
|
MM_API_DB_PASSWORD=<your_database_password>
|
|
144
|
-
MM_API_DB_DATABASE=<your_database_name>
|
|
145
|
-
MM_API_DB_HOST=0.0.0.0
|
|
146
|
-
MM_API_DB_PORT=<your_database_port>
|
|
147
|
-
MM_API_DB_DIALECT=mysql
|
|
148
148
|
MM_API_LOCAL_ENV=true
|
|
149
149
|
MM_API_PROD_ENV=false
|
|
150
150
|
```
|
|
@@ -152,11 +152,11 @@ MM_API_PROD_ENV=false
|
|
|
152
152
|
For SQLite:
|
|
153
153
|
|
|
154
154
|
```makefile
|
|
155
|
-
MM_API_DB_DATABASE=<your_database_name>
|
|
156
155
|
MM_API_DB_DIALECT=sqlite
|
|
157
156
|
MM_API_DB_STORAGE=:memory: # For in-memory SQLite database
|
|
158
157
|
# Or
|
|
159
158
|
MM_API_DB_STORAGE=path/to/your/sqlite/file.db # For file-based SQLite database
|
|
159
|
+
MM_API_DB_DATABASE=<your_database_name>
|
|
160
160
|
MM_API_LOCAL_ENV=true
|
|
161
161
|
MM_API_PROD_ENV=false
|
|
162
162
|
```
|