mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 19:46:46 +00:00
11 lines
354 B
Bash
11 lines
354 B
Bash
# 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
|