12 lines
345 B
Bash
12 lines
345 B
Bash
|
# Define storage type for the app
|
||
|
# inmemory (default) - store data in memory (non-persistent)
|
||
|
# postgres - store data in postgres database
|
||
|
APP_STORAGE=postgres
|
||
|
|
||
|
# Postgres configuration for APP_STORAGE=postgres
|
||
|
APP_POSTGRES_HOST=postgres
|
||
|
APP_POSTGRES_PORT=5432
|
||
|
APP_POSTGRES_USER=username
|
||
|
APP_POSTGRES_PASSWORD=password
|
||
|
APP_POSTGRES_DB=database
|