mirror of
https://github.com/CyberSecurityUP/NeuroSploit.git
synced 2026-02-12 22:12:45 +00:00
28 lines
1.0 KiB
Bash
28 lines
1.0 KiB
Bash
# NeuroSploit v3 Environment Variables
|
|
# =====================================
|
|
# Copy this file to .env and configure your API keys
|
|
#
|
|
# IMPORTANT: You MUST set at least one LLM API key for the AI agent to work!
|
|
#
|
|
|
|
# =============================================================================
|
|
# LLM API Keys (REQUIRED - at least one must be set)
|
|
# =============================================================================
|
|
# Get your Claude API key at: https://console.anthropic.com/
|
|
ANTHROPIC_API_KEY=
|
|
|
|
# Or use OpenAI as fallback: https://platform.openai.com/api-keys
|
|
OPENAI_API_KEY=
|
|
|
|
# =============================================================================
|
|
# Database (default is SQLite - no config needed)
|
|
# =============================================================================
|
|
DATABASE_URL=sqlite+aiosqlite:///./data/neurosploit.db
|
|
|
|
# =============================================================================
|
|
# Server Configuration
|
|
# =============================================================================
|
|
HOST=0.0.0.0
|
|
PORT=8000
|
|
DEBUG=false
|