# JIRA AI Fixer v2.0 - Environment Configuration # Copy this file to .env and fill in your values # ===== REQUIRED ===== # Database (PostgreSQL) DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/jira_fixer # Security (generate with: openssl rand -hex 32) SECRET_KEY=change-me-in-production JWT_SECRET=change-me-in-production # ===== OPTIONAL ===== # Redis (for job queue) REDIS_URL=redis://localhost:6379/0 # Email notifications (https://resend.com) RESEND_API_KEY= EMAIL_FROM=JIRA AI Fixer # AI Analysis (https://openrouter.ai) OPENROUTER_API_KEY= # Git Integration GITEA_URL= GITEA_TOKEN= # Application URL (for emails and callbacks) APP_URL=http://localhost:8000 # JIRA Cloud OAuth JIRA_CLIENT_ID= JIRA_CLIENT_SECRET= # GitHub OAuth GITHUB_CLIENT_ID= GITHUB_CLIENT_SECRET=