-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
31 lines (24 loc) · 1.43 KB
/
env.example
File metadata and controls
31 lines (24 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# ==== Application ====
RAILS_ENV=development # Environment: development | production | test
RAILS_LOG_TO_STDOUT=true # Output Rails logs to STDOUT (true/false)
# ==== Database ====
POSTGRES_HOST=postgres # Hostname for PostgreSQL service
POSTGRES_PORT=5432 # Port for PostgreSQL (default 5432)
POSTGRES_USER=your_db_user # Username for PostgreSQL
POSTGRES_PASSWORD=your_db_password # Password for PostgreSQL
POSTGRES_DB=your_db_name # Name of the PostgreSQL database
# ==== Redis ====
REDIS_URL=redis://redis:6379/1 # Redis connection URL (format: redis://host:port/db)
# ==== Kafka ====
KAFKA_BROKERS=kafka:9092 # Comma-separated list of Kafka broker addresses
# ==== Prometheus Exporter ====
PROMETHEUS_EXPORTER_DISABLED=false # Disable Prometheus Exporter if true
PROMETHEUS_EXPORTER_PORT=9394 # Port for Prometheus Exporter to listen on
PROMETHEUS_EXPORTER_BIND=0.0.0.0 # IP address Prometheus Exporter binds to
# ==== Auth0 ====
AUTH0_DOMAIN=your-tenant.auth0.com # Auth0 domain (tenant)
AUTH0_CLIENT_ID=your-client-id # Auth0 client ID
AUTH0_CLIENT_SECRET=your-client-secret # Auth0 client secret
# ==== Traefik ====
TRAEFIK_ENTRYPOINT=http # Traefik entrypoint name
TRAEFIK_HOST=koala.localhost # Public domain used for routing traffic