Fix default parameters

This commit is contained in:
Romaric Mourgues
2023-03-28 10:36:00 +02:00
parent 30552d8fad
commit 682b847ad1
2 changed files with 5 additions and 0 deletions
+2
View File
@@ -7,6 +7,8 @@
3. Launch backend with `cd twake/backend/node/; SEARCH_DRIVER=mongodb DB_DRIVER=mongodb PUBSUB_TYPE=local DB_MONGO_URI=mongodb://localhost:27017 STORAGE_LOCAL_PATH=/[full-path-to-store-documents]/documents NODE_ENV=development yarn dev` 3. Launch backend with `cd twake/backend/node/; SEARCH_DRIVER=mongodb DB_DRIVER=mongodb PUBSUB_TYPE=local DB_MONGO_URI=mongodb://localhost:27017 STORAGE_LOCAL_PATH=/[full-path-to-store-documents]/documents NODE_ENV=development yarn dev`
4. If you need more parameters, create/edit `twake/backend/node/config/development.json` file 4. If you need more parameters, create/edit `twake/backend/node/config/development.json` file
App will be running on port 3000.
## License ## License
Tdrive is licensed under [Affero GPL v3 with additional terms](https://github.com/TwakeApp/Twake/blob/main/LICENSE.md) Tdrive is licensed under [Affero GPL v3 with additional terms](https://github.com/TwakeApp/Twake/blob/main/LICENSE.md)
+3
View File
@@ -39,6 +39,9 @@
} }
} }
}, },
"console": {
"type": "internal"
},
"sentry": { "sentry": {
"dsn": "" "dsn": ""
}, },