diff --git a/docker/sqlite-config.env b/docker/sqlite-config.env new file mode 100644 index 0000000000..b41660ad6e --- /dev/null +++ b/docker/sqlite-config.env @@ -0,0 +1,10 @@ +# InvenTree environment variables for a development setup + +# Set DEBUG to False for a production environment! +INVENTREE_DEBUG=True +INVENTREE_DEBUG_LEVEL=INFO + +# Database configuration options +# Note: The example setup is for a PostgreSQL database (change as required) +INVENTREE_DB_ENGINE=sqlite +INVENTREE_DB_NAME=/home/inventree/dev/inventree_db.sqlite3