-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
63 lines (52 loc) · 2.43 KB
/
env.example
File metadata and controls
63 lines (52 loc) · 2.43 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
# =============================================================================
# 🐉 DRAGONSEYE RANSOMWARETRACKER - Environment Configuration
# =============================================================================
# Copy this file to .env and fill in your values:
# cp env.example .env
# =============================================================================
# =============================================================================
# 🌍 ENVIRONMENT
# =============================================================================
# Options: development, production
ENVIRONMENT=development
# API Port
PORT=8000
# =============================================================================
# 🔐 ADMIN CREDENTIALS
# =============================================================================
# Username for admin panel access
ADMIN_USERNAME=admin
# Password hash (SHA256)
# Generate with: python3 -c "import hashlib; print(hashlib.sha256('YOUR_PASSWORD'.encode()).hexdigest())"
ADMIN_PASSWORD_HASH=
# =============================================================================
# 🌐 CORS SETTINGS
# =============================================================================
# Comma-separated list of allowed origins
# Development: *
# Production: https://yourdomain.com,https://api.yourdomain.com
ALLOWED_ORIGINS=*
# =============================================================================
# 🤖 OPENAI (Optional - for AI enrichment)
# =============================================================================
# Get your API key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=
# =============================================================================
# 🧅 TOR PROXY (Optional - for .onion scraping)
# =============================================================================
# Default Tor SOCKS proxy
TOR_PROXY=socks5h://127.0.0.1:9050
# =============================================================================
# 📧 NOTIFICATIONS (Optional)
# =============================================================================
# Telegram bot token for alerts
TELEGRAM_BOT_TOKEN=
TELEGRAM_CHAT_ID=
# Discord webhook for alerts
DISCORD_WEBHOOK_URL=
# =============================================================================
# 🗄️ DATABASE PATHS (Optional - defaults work fine)
# =============================================================================
# DB_DIR=./db
# LOGS_DIR=./logs
# TMP_DIR=./tmp