25 lines
1.3 KiB
Bash
25 lines
1.3 KiB
Bash
|
|
# Your domain, e.g https://example.com
|
|||
|
|
# You might have to add :443 if you are using https through a reverse proxy
|
|||
|
|
ORIGIN=http://localhost:3000
|
|||
|
|
# If you need to provide multiple domains, uncomment and pass a comma-separated list to ORIGINS instead (replace ORIGIN)
|
|||
|
|
# ORIGINS=http://localhost:3000,https://flights.example.com
|
|||
|
|
|
|||
|
|
# The database URL used by the application.
|
|||
|
|
# If you are using the provided docker-compose file, you should only change the "password" part of the URL
|
|||
|
|
# If you are using your own database, you should change this to the correct URL
|
|||
|
|
# ∨∨∨∨∨∨∨∨
|
|||
|
|
DB_URL=postgres://airtrail:password@db:5432/airtrail
|
|||
|
|
# ∧∧
|
|||
|
|
# Change "db" to "localhost" if you are developing locally
|
|||
|
|
|
|||
|
|
# Values below this line are only for the default provided postgres database
|
|||
|
|
###################################################################################
|
|||
|
|
# Connection secret for postgres. You should change it to a random password
|
|||
|
|
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
|
|||
|
|
# When you change the DB_PASSWORD, you should also update the DB_URL accordingly
|
|||
|
|
DB_PASSWORD=password
|
|||
|
|
|
|||
|
|
# The values below this line do not need to be changed
|
|||
|
|
###################################################################################
|
|||
|
|
DB_DATABASE_NAME=airtrail
|
|||
|
|
DB_USERNAME=airtrail
|