mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
16 lines
440 B
Bash
16 lines
440 B
Bash
# InvenTree environment variables for a development setup
|
|
|
|
# Set DEBUG to False for a production environment!
|
|
INVENTREE_DEBUG=True
|
|
|
|
# Change verbosity level for debug output
|
|
INVENTREE_DEBUG_LEVEL=INFO
|
|
|
|
# Database linking options
|
|
INVENTREE_DB_ENGINE=sqlite3
|
|
INVENTREE_DB_NAME=/home/inventree/dev/inventree_db.sqlite3
|
|
# INVENTREE_DB_HOST=hostaddress
|
|
# INVENTREE_DB_PORT=5432
|
|
# INVENTREE_DB_USERNAME=dbuser
|
|
# INVENTREE_DB_PASSWEORD=dbpassword
|