| 1 | # Perseus AI Platform - Environment Variables |
| 2 | # Copy this to .env and fill in your values |
| 3 | |
| 4 | # Discord |
| 5 | DISCORD_TOKEN=your_discord_bot_token_here |
| 6 | DISCORD_CHANNEL_ID=your_channel_id_here |
| 7 | OWNER_DISCORD_ID=your_discord_user_id_here |
| 8 | |
| 9 | # AI Models |
| 10 | XAI_API_KEY=your_xai_api_key_here |
| 11 | OPENAI_API_KEY=your_openai_api_key_here |
| 12 | BRAVE_API_KEY=your_brave_search_api_key_here |
| 13 | |
| 14 | # Ollama (local LLM) |
| 15 | OLLAMA_URL=http://localhost:11434 |
| 16 | OLLAMA_MODEL=qwen3:8b |
| 17 | |
| 18 | # X/Twitter (OAuth 1.0a) |
| 19 | X_CONSUMER_KEY=your_consumer_key_here |
| 20 | X_CONSUMER_SECRET=your_consumer_secret_here |
| 21 | X_ACCESS_TOKEN=your_access_token_here |
| 22 | X_ACCESS_TOKEN_SECRET=your_access_token_secret_here |
| 23 | |
| 24 | # Analytics / Ad Platform API |
| 25 | ANALYTICS_API_KEY=your_analytics_api_key_here |
| 26 | ANALYTICS_BASE_URL=https://api.your-ad-platform.com |
| 27 | |
| 28 | # PostgreSQL |
| 29 | PG_DBNAME=perseus |
| 30 | PG_USER=perseus |
| 31 | PG_PASSWORD=your_postgres_password_here |
| 32 | PG_HOST=localhost |
| 33 | |
| 34 | # Budget |
| 35 | MONTHLY_BUDGET=10.00 |
| 36 | |
| 37 | # Infrastructure IPs (customize for your homelab) |
| 38 | NODE1_IP=REDACTED-IP |
| 39 | NODE2_IP=REDACTED-IP |
| 40 | PERSEUS_IP=REDACTED-IP |
| 41 | VPN_IP=REDACTED-IP |
| 42 | DNS_IP=REDACTED-IP |
| 43 | BACKUP_IP=REDACTED-IP |
| 44 | GPU_IP=REDACTED-IP |
| 45 | |
| 46 | # Video API |
| 47 | JWT_SECRET=your_jwt_secret_here |