From 39b2c5f943cc3de5de03e6ca347411c40a4c1cef Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Tue, 30 Mar 2021 21:18:09 +1100 Subject: [PATCH] Reintroduce default database config --- InvenTree/config_template.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/InvenTree/config_template.yaml b/InvenTree/config_template.yaml index 343ab312e4..c529182bb7 100644 --- a/InvenTree/config_template.yaml +++ b/InvenTree/config_template.yaml @@ -10,6 +10,11 @@ database: # Uncomment (and edit) one of the database configurations below, # or specify database options using environment variables + # Default installation uses a simple sqlite database + # For production, consider changing this! + ENGINE: sqlite3 + NAME: '/home/inventree/database.sqlite3' + # Refer to the django documentation for full list of options # --- Available options: ---