mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
29 lines
No EOL
695 B
Text
29 lines
No EOL
695 B
Text
# Core application config
|
|
ENVIRONMENT: "local"
|
|
LOG_LEVEL: "INFO"
|
|
|
|
# Database configuration (using containerized postgres)
|
|
DATABASE_URL: "postgresql+asyncpg://postgres:postgres@postgres:5432/postgres"
|
|
|
|
# Redis configuration (using containerized redis)
|
|
REDIS_URL: "redis://:redissecret@redis:6379"
|
|
|
|
# Storage configuration - using local MinIO
|
|
ENABLE_AWS_S3: "false"
|
|
|
|
# MinIO
|
|
MINIO_ENDPOINT: "minio:9000"
|
|
MINIO_ACCESS_KEY: "minioadmin"
|
|
MINIO_SECRET_KEY: "minioadmin"
|
|
MINIO_BUCKET: "voice-audio"
|
|
MINIO_SECURE: "false"
|
|
|
|
# Langfuse
|
|
ENABLE_TRACING: "false"
|
|
# LANGFUSE_SECRET_KEY: ""
|
|
# LANGFUSE_PUBLIC_KEY: ""
|
|
# LANGFUSE_HOST: "https://langfuse.dograh.com"
|
|
|
|
# Sentry
|
|
ENABLE_SETRY: "false"
|
|
SENTRY_DSN: "" |