--- # ============================================================================= # POTE - Common Variables (All Environments) # ============================================================================= # ----------------------------------------------------------------------------- # Git Repository (same for all environments) # ----------------------------------------------------------------------------- pote_git_repo: "gitea@10.0.30.169:ilia/POTE.git" pote_git_ssh_key: "{{ vault_git_ssh_key }}" # Store in Ansible Vault # ----------------------------------------------------------------------------- # Application User # ----------------------------------------------------------------------------- appuser_name: "poteapp" appuser_shell: "/bin/bash" appuser_groups: [] appuser_ssh_public_key: "{{ vault_ssh_public_key }}" # Store in Ansible Vault # ----------------------------------------------------------------------------- # Email Configuration (same for all environments) # ----------------------------------------------------------------------------- smtp_host: "mail.levkin.ca" smtp_port: 587 smtp_user: "test@levkin.ca" from_email: "test@levkin.ca" # Secrets (store in Ansible Vault) smtp_password: "{{ vault_smtp_password }}" # ----------------------------------------------------------------------------- # Monitoring (same tickers for all environments) # ----------------------------------------------------------------------------- market_tickers: "NVDA,TSLA,AAPL,MSFT,GOOGL,META,AMZN,AMD,INTC,NFLX" alert_severity: 5 # ----------------------------------------------------------------------------- # Logging # ----------------------------------------------------------------------------- log_level: "INFO" # ----------------------------------------------------------------------------- # Deployment Options # ----------------------------------------------------------------------------- pote_backup_before_deploy: true pote_rollback_on_failure: true pote_health_check_after_deploy: true # ----------------------------------------------------------------------------- # Cron / Automation # ----------------------------------------------------------------------------- pote_enable_cron: true pote_daily_report_enabled: true pote_weekly_report_enabled: true pote_health_check_enabled: true