mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
13 lines
473 B
Plaintext
13 lines
473 B
Plaintext
# docker-compose.yml
|
|
DEV_DB_NAME=databasus
|
|
DEV_DB_USERNAME=postgres
|
|
DEV_DB_PASSWORD=Q1234567
|
|
#app
|
|
ENV_MODE=production
|
|
# db
|
|
DATABASE_DSN=host=localhost user=postgres password=Q1234567 dbname=databasus port=5437 sslmode=disable
|
|
DATABASE_URL=postgres://postgres:Q1234567@localhost:5437/databasus?sslmode=disable
|
|
# migrations
|
|
GOOSE_DRIVER=postgres
|
|
GOOSE_DBSTRING=postgres://postgres:Q1234567@localhost:5437/databasus?sslmode=disable
|
|
GOOSE_MIGRATION_DIR=./migrations |