mirror of
https://github.com/acaloiaro/newsbox
synced 2026-07-21 10:12:26 +00:00
9 lines
364 B
YAML
9 lines
364 B
YAML
---
|
|
development:
|
|
url: {{envOr "DATABASE_URL" "postgres://postgres:postgres@127.0.0.1:5432/newsbox?sslmode=disable"}}
|
|
|
|
test:
|
|
url: {{envOr "TEST_DATABASE_URL" "postgres://postgres:postgres@127.0.0.1:5432/newsbox_test?sslmode=disable"}}
|
|
|
|
production:
|
|
url: {{envOr "DATABASE_URL" "postgres://postgres:postgres@127.0.0.1:5432/newsbox_production?sslmode=disable"}}
|