2025-12-07 11:25:38 +01:00
|
|
|
# LetsBe Orchestrator Environment Variables
|
|
|
|
|
# Copy this file to .env and fill in the values
|
|
|
|
|
|
|
|
|
|
# =============================================================================
|
|
|
|
|
# ADMIN API KEY (Required for production)
|
|
|
|
|
# =============================================================================
|
|
|
|
|
# Used to authenticate admin endpoints like registration token management.
|
|
|
|
|
#
|
|
|
|
|
# Generate a secure key with:
|
|
|
|
|
# python -c "import secrets; print(secrets.token_hex(32))"
|
|
|
|
|
#
|
|
|
|
|
# Or using openssl:
|
|
|
|
|
# openssl rand -hex 32
|
|
|
|
|
#
|
|
|
|
|
ADMIN_API_KEY=change-me-in-production
|
|
|
|
|
|
|
|
|
|
# =============================================================================
|
|
|
|
|
# Database
|
|
|
|
|
# =============================================================================
|
|
|
|
|
# Port 5433 to avoid conflict with existing Postgres
|
2025-12-03 11:02:31 +01:00
|
|
|
DATABASE_URL=postgresql+asyncpg://orchestrator:orchestrator@localhost:5433/orchestrator
|
|
|
|
|
|
2025-12-07 11:25:38 +01:00
|
|
|
# =============================================================================
|
|
|
|
|
# Application Settings
|
|
|
|
|
# =============================================================================
|
2025-12-03 11:02:31 +01:00
|
|
|
DEBUG=true
|
|
|
|
|
APP_NAME=LetsBe Orchestrator
|