23 lines
602 B
Plaintext
23 lines
602 B
Plaintext
# PostgreSQL
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_USER=dagster
|
|
POSTGRES_PASSWORD=changeme
|
|
POSTGRES_DB=dagster
|
|
|
|
# Dagster metadata storage (same postgres instance)
|
|
DAGSTER_POSTGRES_URL=postgresql://dagster:changeme@postgres:5432/dagster?connect_timeout=10&keepalives=1&keepalives_idle=30&keepalives_interval=10&keepalives_count=5
|
|
|
|
# dbt profile target
|
|
DBT_TARGET=dev
|
|
|
|
# pgAdmin
|
|
PGADMIN_EMAIL=admin@example.com
|
|
PGADMIN_PASSWORD=changeme
|
|
|
|
# Discord webhook for ELO alerts
|
|
DISCORD_WEBHOOK_URL=https://discord.com/api/webhooks/your/webhook/url
|
|
|
|
# MLflow
|
|
MLFLOW_TRACKING_URI=http://mlflow:5000
|