mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
11d3cd3c0c
- sqlite causes too many errors - fix requirements file - fixes for docker setup - A lot of concurrency issues - Bite the bullet, time to go!
15 lines
443 B
Bash
15 lines
443 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=postgresql
|
|
INVENTREE_DB_NAME=inventree
|
|
INVENTREE_DB_HOST=inventree-dev-db
|
|
INVENTREE_DB_PORT=5432
|
|
INVENTREE_DB_USER=pguser
|
|
INVENTREE_DB_PASSWORD=pgpassword
|