# GEMINI_API_KEY: Required for Gemini AI API calls.
# AI Studio automatically injects this at runtime from user secrets.
# Users configure this via the Secrets panel in the AI Studio UI.
# Never expose actual secrets in this codebase.
GEMINI_API_KEY="MY_GEMINI_API_KEY"

# APP_URL: The URL where this applet is hosted.
# AI Studio automatically injects this at runtime with the Cloud Run service URL.
APP_URL="MY_APP_URL"

# PostgreSQL Connection Options (Configured "one by one" for cPanel & local PC environments)
DB_HOST="localhost"
DB_PORT="5432"
DB_USER="wfdinbfl_field_user"
DB_PASSWORD="!@Muchie2022"
DB_DATABASE="wfdinbfl_field_db"
DB_SSL="false"

# Optional: Consolidated Connection String (Fallback option)
DATABASE_URL=""
