From 07857c3088ca119d42edf4ed7d5a98b53874cb51 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 17 Aug 2021 19:59:32 +1000 Subject: [PATCH] Simplify dev-config.env file - Don't need to re-specify the internal docker variables - Add comments --- docker/dev-config.env | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docker/dev-config.env b/docker/dev-config.env index fe1f073633..ec00c47251 100644 --- a/docker/dev-config.env +++ b/docker/dev-config.env @@ -1,9 +1,10 @@ +# Set DEBUG to False for a production environment! +INVENTREE_DEBUG=true + +# Database linking options INVENTREE_DB_ENGINE=sqlite3 INVENTREE_DB_NAME=/home/inventree/dev/inventree_db.sqlite3 -INVENTREE_MEDIA_ROOT=/home/inventree/dev/media -INVENTREE_STATIC_ROOT=/home/inventree/dev/static -INVENTREE_CONFIG_FILE=/home/inventree/dev/config.yaml -INVENTREE_SECRET_KEY_FILE=/home/inventree/dev/secret_key.txt -INVENTREE_DEBUG=true -INVENTREE_WEB_ADDR=0.0.0.0 -INVENTREE_WEB_PORT=8000 \ No newline at end of file +# INVENTREE_DB_HOST=hostaddress +# INVENTREE_DB_PORT=5432 +# INVENTREE_DB_USERNAME=dbuser +# INVENTREE_DB_PASSWEORD=dbpassword