Spaces:
Paused
Paused
File size: 902 Bytes
bcf46c3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # =====================================================
# PhishVision Server — Environment Variables
# Copy this file to .env and fill in your values
# =====================================================
# --- AI Provider (Required) ---
# Primary: OpenRouter (free tier — https://openrouter.ai/keys)
FREE_AI_KEY=sk-or-v1-your-openrouter-key-here
FREE_AI_BASE_URL=https://openrouter.ai/api/v1
FREE_AI_MODEL=openai/gpt-4o
# Alternative: GitHub Models (free — https://github.com/settings/tokens)
# FREE_AI_KEY=ghp_your_github_personal_access_token
# FREE_AI_BASE_URL=https://models.inference.ai.azure.com
# FREE_AI_MODEL=openai/gpt-4o
# --- Server Config ---
# PORT is injected automatically by Render — only needed for local dev
PHISH_PORT=3001
# --- Optional: Opticparse Python server (if running both locally) ---
# OPTICPARSE_API_KEY=your-opticparse-key
# GEMINI_API_KEY=your-gemini-key
|