From 682b847ad18a0110d801c87683db96969654e27a Mon Sep 17 00:00:00 2001 From: Romaric Mourgues Date: Tue, 28 Mar 2023 10:36:00 +0200 Subject: [PATCH] Fix default parameters --- README.md | 2 ++ twake/backend/node/config/default.json | 3 +++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 25bc44a9..f4de0094 100644 --- a/README.md +++ b/README.md @@ -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` 4. If you need more parameters, create/edit `twake/backend/node/config/development.json` file +App will be running on port 3000. + ## License Tdrive is licensed under [Affero GPL v3 with additional terms](https://github.com/TwakeApp/Twake/blob/main/LICENSE.md) diff --git a/twake/backend/node/config/default.json b/twake/backend/node/config/default.json index 06dc5c2b..986258b2 100644 --- a/twake/backend/node/config/default.json +++ b/twake/backend/node/config/default.json @@ -39,6 +39,9 @@ } } }, + "console": { + "type": "internal" + }, "sentry": { "dsn": "" },