-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
67 lines (57 loc) · 2.29 KB
/
.env.example
File metadata and controls
67 lines (57 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# ============================================
# Bug Bounty Finder - Environment Variables
# ============================================
# Copy this file to .env and fill in your actual values
# DO NOT commit .env to version control!
# ============================================
# GitHub Configuration
# ============================================
# Personal Access Token for GitHub API (recommended for higher rate limits)
# Get from: https://github.com/settings/tokens
# Required scopes: repo, read:org, read:user
GITHUB_API_TOKEN=
# Webhook secret for verifying GitHub webhook signatures
# Generate with: openssl rand -hex 32
GITHUB_WEBHOOK_SECRET=
# ============================================
# Bug Bounty Platforms
# ============================================
# Algora API Key (optional - check if Algora requires authentication)
# Get from: https://algora.io (if available)
ALGORA_API_KEY=
# Polar.sh API Key (optional - check if Polar.sh requires authentication)
# Get from: https://polar.sh (if available)
POLAR_API_KEY=
# ============================================
# Security & Vulnerability
# ============================================
# NVD API Key (optional but recommended for 10x rate limit improvement)
# Get from: https://nvd.nist.gov/developers/request-an-api-key
# Without key: 5 requests per 30 seconds
# With key: 50 requests per 30 seconds
NVD_API_KEY=
# ============================================
# LLM Configuration (Ollama)
# ============================================
# Ollama base URL (default: http://localhost:11434)
OLLAMA_BASE_URL=http://localhost:11434
# Ollama model to use (default: deepseek-coder:6.7b)
# Pull model with: ollama pull deepseek-coder:6.7b
OLLAMA_MODEL=deepseek-coder:6.7b
# ============================================
# Database Configuration
# ============================================
# PostgreSQL connection (defaults shown)
DB_USERNAME=postgres
DB_PASSWORD=postgres
# ============================================
# Redis Configuration
# ============================================
# Redis connection (defaults shown)
REDIS_HOST=localhost
REDIS_PORT=6379
# ============================================
# Repository Configuration
# ============================================
# Base path for cloning repositories (default: ./repos)
REPO_CLONE_PATH=./repos