Files
aggios.app/backend/.env.example

37 lines
702 B
Plaintext

# Server
SERVER_HOST=0.0.0.0
SERVER_PORT=8080
ENV=development
JWT_SECRET=your-super-secret-jwt-key-change-in-production
# Database
DB_HOST=postgres
DB_PORT=5432
DB_USER=aggios
DB_PASSWORD=changeme
DB_NAME=aggios_db
DB_SSL_MODE=disable
# Redis
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=changeme
# MinIO
MINIO_ENDPOINT=minio:9000
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=changeme
MINIO_USE_SSL=false
MINIO_BUCKET_NAME=aggios
# JWT
JWT_SECRET=your-super-secret-jwt-key-change-me-in-production
JWT_EXPIRATION=24h
REFRESH_TOKEN_EXPIRATION=7d
# Cors
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://localhost:3001,https://aggios.app,https://dash.aggios.app
# Sentry (optional)
SENTRY_DSN=