# MPR Environment Configuration # Copy to .env and adjust values as needed # Database POSTGRES_DB=mpr POSTGRES_USER=mpr_user POSTGRES_PASSWORD=mpr_pass POSTGRES_HOST=postgres POSTGRES_PORT=5432 DATABASE_URL=postgresql://mpr_user:mpr_pass@postgres:5432/mpr # Redis REDIS_HOST=redis REDIS_PORT=6379 REDIS_URL=redis://redis:6379/0 # Django DEBUG=1 DJANGO_SETTINGS_MODULE=mpr.settings SECRET_KEY=change-this-in-production # Worker MPR_EXECUTOR=local # gRPC GRPC_HOST=grpc GRPC_PORT=50051 GRPC_MAX_WORKERS=10 # Vite VITE_ALLOWED_HOSTS=your-domain.local