15 lines
383 B
YAML
15 lines
383 B
YAML
# Copy to config.yml (gitignored) and adapt.
|
|
# Every value can also be given as an environment variable, e.g. APP__SERVER__PORT=3000
|
|
server:
|
|
address: 0.0.0.0
|
|
port: 3000
|
|
|
|
postgres:
|
|
host: localhost
|
|
port: 5432
|
|
user: postgres
|
|
password: postgres
|
|
name: app_template
|
|
|
|
# Directory containing the built frontend (frontend/dist after `npm run build`)
|
|
frontend_dir: frontend/dist
|