# REQUIRED — Generate with: openssl rand -hex 64 # This key encrypts JWT tokens, Fernet credentials, and session data. # It MUST be the same across container restarts and all workers. APP_SECRET= # JWT token expiry in hours (default: 12) JWT_EXPIRY_HOURS=12 # Frontend port (default: 8080) PORT=8080 # CORS allowed origins (comma-separated, e.g., https://your-domain.com) CORS_ORIGINS=http://localhost:8080 # Timezone TZ=America/Sao_Paulo # Suppress OCI CLI file permission warnings OCI_CLI_SUPPRESS_FILE_PERMISSIONS_WARNING=True