2020-12-17 01:01:27 +01:00
|
|
|
# Configuration for the uvicorn server running the energyDB application
|
|
|
|
|
|
|
|
|
|
# Set HTTP port
|
|
|
|
|
HTTP_PORT=8444
|
|
|
|
|
|
|
|
|
|
# Bind to address
|
|
|
|
|
IP_ADDRESS=0.0.0.0
|
|
|
|
|
|
|
|
|
|
# More uvicorn command line arguments
|
2020-12-19 01:18:21 +00:00
|
|
|
UVICORN_ARGS=--reload
|
|
|
|
|
|
|
|
|
|
# The database URL
|
|
|
|
|
DATABASE_URL='sqlite:///./energyDB.sqlite'
|