29 lines
712 B
Bash
29 lines
712 B
Bash
# Database
|
|
POSTGRES_DB=schaeffler
|
|
POSTGRES_USER=schaeffler
|
|
POSTGRES_PASSWORD=schaeffler
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_PORT=5432
|
|
|
|
# Redis
|
|
REDIS_URL=redis://redis:6379/0
|
|
|
|
# JWT
|
|
JWT_SECRET_KEY=your-secret-key-here-change-in-production
|
|
JWT_ALGORITHM=HS256
|
|
JWT_ACCESS_TOKEN_EXPIRE_MINUTES=480
|
|
|
|
# Azure OpenAI
|
|
AZURE_OPENAI_API_KEY=your-azure-openai-key
|
|
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
|
|
AZURE_OPENAI_DEPLOYMENT=gpt-4o
|
|
AZURE_OPENAI_API_VERSION=2024-02-01
|
|
|
|
# File Storage
|
|
UPLOAD_DIR=/app/uploads
|
|
MAX_UPLOAD_SIZE_MB=500
|
|
|
|
# Celery worker concurrency (default: 8 parallel CAD jobs per worker container)
|
|
# Scale horizontally with: docker compose up --scale worker=N
|
|
CELERY_WORKER_CONCURRENCY=8
|