24 lines
450 B
Plaintext
24 lines
450 B
Plaintext
# Database
|
|
POSTGRES_USER=docforge
|
|
POSTGRES_PASSWORD=docforge
|
|
POSTGRES_DB=docforge
|
|
POSTGRES_HOST=localhost
|
|
POSTGRES_PORT=5432
|
|
|
|
# Redis
|
|
REDIS_URL=redis://localhost:6379/0
|
|
|
|
# Backend
|
|
SECRET_KEY=your-fernet-key-change-in-production
|
|
DEFAULT_MODEL_ID=
|
|
|
|
# File Storage
|
|
STORAGE_ROOT=./storage
|
|
|
|
# Celery
|
|
CELERY_BROKER_URL=redis://localhost:6379/0
|
|
CELERY_RESULT_BACKEND=redis://localhost:6379/1
|
|
|
|
# CORS
|
|
CORS_ORIGINS=http://localhost:3000,http://localhost:5173
|