2021-08-18 03:02:36 +00:00
|
|
|
# InvenTree environment variables for a production setup
|
|
|
|
|
|
|
|
# Note: If your production setup varies from the example, you may want to change these values
|
|
|
|
|
|
|
|
# Ensure debug is false for a production setup
|
|
|
|
INVENTREE_DEBUG=False
|
2021-08-22 18:59:51 +00:00
|
|
|
INVENTREE_LOG_LEVEL=WARNING
|
2021-08-18 03:02:36 +00:00
|
|
|
|
2021-12-20 13:34:23 +00:00
|
|
|
# Database configuration options
|
2021-08-18 03:02:36 +00:00
|
|
|
# Note: The example setup is for a PostgreSQL database (change as required)
|
|
|
|
INVENTREE_DB_ENGINE=postgresql
|
|
|
|
INVENTREE_DB_NAME=inventree
|
|
|
|
INVENTREE_DB_HOST=inventree-db
|
|
|
|
INVENTREE_DB_PORT=5432
|
|
|
|
INVENTREE_DB_USER=pguser
|
2021-08-18 04:47:34 +00:00
|
|
|
INVENTREE_DB_PASSWORD=pgpassword
|