2021-08-17 10:29:48 +00:00
|
|
|
# InvenTree environment variables for a development setup
|
2022-05-28 23:40:37 +00:00
|
|
|
# These variables will be used by the docker-compose.yml file
|
2021-08-17 10:29:48 +00:00
|
|
|
|
2022-04-20 13:15:37 +00:00
|
|
|
# Set DEBUG to True for a development setup
|
2021-08-17 10:29:48 +00:00
|
|
|
INVENTREE_DEBUG=True
|
2022-12-13 20:17:24 +00:00
|
|
|
INVENTREE_LOG_LEVEL=INFO
|
2023-09-25 06:54:17 +00:00
|
|
|
INVENTREE_DB_LOGGING=False
|
2021-08-17 10:45:57 +00:00
|
|
|
|
2021-12-20 13:34:23 +00:00
|
|
|
# Database configuration options
|
|
|
|
# Note: The example setup is for a PostgreSQL database (change as required)
|
|
|
|
INVENTREE_DB_ENGINE=postgresql
|
|
|
|
INVENTREE_DB_NAME=inventree
|
|
|
|
INVENTREE_DB_HOST=inventree-dev-db
|
|
|
|
INVENTREE_DB_PORT=5432
|
|
|
|
INVENTREE_DB_USER=pguser
|
|
|
|
INVENTREE_DB_PASSWORD=pgpassword
|
2022-01-11 01:35:32 +00:00
|
|
|
|
2022-11-01 22:51:36 +00:00
|
|
|
# Enable custom plugins?
|
|
|
|
INVENTREE_PLUGINS_ENABLED=True
|
2023-10-06 00:38:01 +00:00
|
|
|
|
|
|
|
# Auto run migrations?
|
2024-03-20 22:56:56 +00:00
|
|
|
INVENTREE_AUTO_UPDATE=True
|