-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
50 lines (42 loc) · 1.48 KB
/
.env.example
File metadata and controls
50 lines (42 loc) · 1.48 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
# ==================== PostgreSQL Database Configuration ====================
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_DATABASE=crawlerdb
POSTGRES_USER=postgres
POSTGRES_PASSWORD=your_secure_password_here
# ==================== Security Configuration ====================
JWT_SECRET_KEY=your_jwt_secret_key_here
JWT_ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=1440
PASSWORD_RESET_TOKEN_EXPIRE_HOURS=24
ENCRYPTION_KEY=your_encryption_key_here
# ==================== Email Configuration ====================
EMAIL_HOST=smtp.example.com
EMAIL_PORT=587
EMAIL_USERNAME=your_email@example.com
EMAIL_PASSWORD=your_email_password_here
EMAIL_FROM=noreply@example.com
EMAIL_FROM_NAME=YourAppName
EMAIL_USE_TLS=true
RESET_PASSWORD_URL=https://yourdomain.com/auth/reset_password
# ==================== Redis Configuration ====================
REDIS_URL=redis://localhost:6379/0
# ==================== Proxy Configuration ====================
# Global mode: basic, stealth, enhanced, auto
PROXY_MODE=auto
# Legacy single proxy (requests-compatible URL)
# Example: http://user:pass@host:port
CRAWL_PROXY=
# Optional proxy pools (comma-separated)
BASIC_PROXIES=
STEALTH_PROXIES=
# Enhanced pool defaults to STEALTH_PROXIES when empty
ENHANCED_PROXIES=
# Firecrawl-style BYOP (used by Playwright contexts)
# PROXY_SERVER can be host:port or full URL like http://host:port
PROXY_SERVER=
PROXY_USERNAME=
PROXY_PASSWORD=
# ==================== API Configuration ====================
API_ENV=development
DEBUG=false