--- # ============================================================================= # POTE - Production Environment # ============================================================================= environment: "production" # ----------------------------------------------------------------------------- # Git Branch # ----------------------------------------------------------------------------- git_branch: "main" pote_git_branch: "main" # ----------------------------------------------------------------------------- # Server # ----------------------------------------------------------------------------- # Set in inventory # ansible_host: 10.0.10.95 # ----------------------------------------------------------------------------- # Database # ----------------------------------------------------------------------------- db_host: "localhost" db_port: 5432 db_name: "potedb" db_user: "poteuser" db_password: "{{ vault_db_password_prod }}" # ----------------------------------------------------------------------------- # Email Recipients (production) # ----------------------------------------------------------------------------- report_recipients: "test@levkin.ca" # ----------------------------------------------------------------------------- # Features (all enabled) # ----------------------------------------------------------------------------- pote_feature_email_reports: true pote_feature_market_monitoring: true pote_feature_disclosure_correlation: true pote_feature_pattern_detection: true # ----------------------------------------------------------------------------- # Deployment # ----------------------------------------------------------------------------- pote_run_tests: false # Don't run full test suite in prod pote_run_smoke_tests: true # But do run smoke tests # ----------------------------------------------------------------------------- # Cron # ----------------------------------------------------------------------------- pote_daily_report_time: "0 6" # 6 AM pote_weekly_report_time: "0 8 0" # Sunday 8 AM pote_health_check_time: "0 */6" # Every 6 hours # ----------------------------------------------------------------------------- # Logging # ----------------------------------------------------------------------------- log_level: "INFO" # ----------------------------------------------------------------------------- # Backup (longer retention) # ----------------------------------------------------------------------------- pote_backup_retention_days: 90 pote_backup_before_deploy: true # ----------------------------------------------------------------------------- # Security (stricter in production) # ----------------------------------------------------------------------------- pote_env_file_mode: "0600" # ----------------------------------------------------------------------------- # Maintenance # ----------------------------------------------------------------------------- pote_db_maintenance_enabled: true pote_db_maintenance_schedule: "0 2 * * 0" # Weekly, Sunday 2 AM