mirror of
https://github.com/databasus/databasus.git
synced 2026-04-06 00:32:03 +02:00
27 lines
920 B
Plaintext
27 lines
920 B
Plaintext
# docker-compose.yml
|
|
DEV_DB_NAME=postgresus
|
|
DEV_DB_USERNAME=postgres
|
|
DEV_DB_PASSWORD=Q1234567
|
|
#app
|
|
ENV_MODE=development
|
|
# db
|
|
DATABASE_DSN=host=dev-db user=postgres password=Q1234567 dbname=postgresus port=5437 sslmode=disable
|
|
DATABASE_URL=postgres://postgres:Q1234567@dev-db:5437/postgresus?sslmode=disable
|
|
# migrations
|
|
GOOSE_DRIVER=postgres
|
|
GOOSE_DBSTRING=postgres://postgres:Q1234567@dev-db:5437/postgresus?sslmode=disable
|
|
GOOSE_MIGRATION_DIR=./migrations
|
|
# testing
|
|
# to get Google Drive env variables: add storage in UI and copy data from added storage here
|
|
TEST_GOOGLE_DRIVE_CLIENT_ID=
|
|
TEST_GOOGLE_DRIVE_CLIENT_SECRET=
|
|
TEST_GOOGLE_DRIVE_TOKEN_JSON="{\"access_token\":\"ya29..."
|
|
# testing DBs
|
|
TEST_POSTGRES_13_PORT=5001
|
|
TEST_POSTGRES_14_PORT=5002
|
|
TEST_POSTGRES_15_PORT=5003
|
|
TEST_POSTGRES_16_PORT=5004
|
|
TEST_POSTGRES_17_PORT=5005
|
|
# testing S3
|
|
TEST_MINIO_PORT=9000
|
|
TEST_MINIO_CONSOLE_PORT=9001 |