# Cidadão.AI - Production Environment Configuration # Copy this file to .env and update the values # Application ENVIRONMENT=production APP_NAME="Cidadão.AI" APP_VERSION="1.0.0" DEBUG=false # Security JWT_SECRET_KEY=your-super-secret-jwt-key-change-this-in-production ACCESS_TOKEN_EXPIRE_MINUTES=30 REFRESH_TOKEN_EXPIRE_DAYS=7 # Database DATABASE_URL=postgresql://cidadao:your-postgres-password@postgres:5432/cidadao_ai POSTGRES_PASSWORD=your-postgres-password # Redis REDIS_URL=redis://redis:6379/0 REDIS_PASSWORD=your-redis-password # API Keys TRANSPARENCY_API_KEY=your-portal-transparencia-api-key GROQ_API_KEY=your-groq-api-key TOGETHER_AI_API_KEY=your-together-ai-api-key HUGGINGFACE_API_KEY=your-huggingface-api-key # Monitoring GRAFANA_PASSWORD=your-grafana-password # Logging LOG_LEVEL=INFO LOG_FORMAT=json # Rate Limiting RATE_LIMIT_PER_MINUTE=100 RATE_LIMIT_BURST=20 # CORS ALLOWED_ORIGINS=https://cidadao.ai,https://www.cidadao.ai # SSL/TLS SSL_CERT_PATH=/etc/nginx/ssl/cert.pem SSL_KEY_PATH=/etc/nginx/ssl/key.pem # Backup BACKUP_RETENTION_DAYS=30 BACKUP_S3_BUCKET=cidadao-ai-backups AWS_ACCESS_KEY_ID=your-aws-access-key AWS_SECRET_ACCESS_KEY=your-aws-secret-key AWS_REGION=us-east-1