mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-06-21 01:25:41 +02:00
17 lines
740 B
Text
17 lines
740 B
Text
# Configure SERVER_ADDRESS to match the address of the server. If you don't have a DNS name, you can use the IP address.
|
|
# A missconfigured SERVER_ADDRESS will cause the app to have CSRF errors.
|
|
SERVER_ADDRESS=my_server_address
|
|
DEBUG_MODE=False
|
|
# Choose a timezone from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
TIMEZONE=America/Sao_Paulo
|
|
|
|
# Available options are 'sqlite', 'postgres'
|
|
DATABASE_ENGINE=postgres
|
|
# If you want to use sqlite or postgres outside of docker, you should use docker-compose-no-postgres.yml
|
|
# and provide POSTGRES_HOST, POSTGRES_PORT below.
|
|
#POSTGRES_HOST=${POSTGRES_HOST}
|
|
#POSTGRES_PORT=${POSTGRES_PORT}
|
|
POSTGRES_DB=routerfleet
|
|
POSTGRES_USER=routerfleet
|
|
POSTGRES_PASSWORD=your_database_password
|
|
|