From 3c4aa7de7d4379ebbe2fd2ec8e73d96727423289 Mon Sep 17 00:00:00 2001 From: Joas A Santos <34966120+CyberSecurityUP@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:52:25 -0300 Subject: [PATCH] Create .env --- .env | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .env diff --git a/.env b/.env new file mode 100644 index 0000000..9e5826d --- /dev/null +++ b/.env @@ -0,0 +1,27 @@ +# 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