-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path.env.example
More file actions
56 lines (45 loc) · 1.36 KB
/
.env.example
File metadata and controls
56 lines (45 loc) · 1.36 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
# LinkedIn Credentials
LINKEDIN_USERNAME=your_email@example.com
LINKEDIN_PASSWORD=your_password
# Search Configuration
SEARCH_LINK=https://www.linkedin.com/search/results/people/?keywords=recruiter
SEARCH_KEYWORDS=technical recruiter
# Connection Limits
MAX_DAILY_REQUESTS=15
MAX_WEEKLY_REQUESTS=80
MAX_CONNECT_REQUESTS_PER_SESSION=20
# Delays (in seconds)
MIN_DELAY=3.0
MAX_DELAY=8.0
PAGE_LOAD_DELAY=5.0
# Browser Configuration
HEADLESS_MODE=false
FIREFOX_BINARY_PATH=/usr/bin/firefox
GECKODRIVER_PATH=./geckodriver
USE_CHROME=false
# Proxy Configuration (optional)
USE_PROXY=false
PROXY_URL=http://proxy.example.com:8080
PROXY_USERNAME=
PROXY_PASSWORD=
# Logging
LOG_LEVEL=INFO
LOG_FILE=logs/bot.log
ENABLE_SCREENSHOT_ON_ERROR=true
# Database
DATABASE_PATH=data/bot.db
REDIS_HOST=localhost
REDIS_PORT=6379
# Session Management
SESSION_DIR=sessions
SESSION_TIMEOUT_HOURS=24
# Message Templates (use | to separate multiple templates)
CONNECTION_MESSAGE_TEMPLATES=Hi {name}, I noticed we have mutual connections. I'm impressed by your work at {company} and would love to connect.|Hello {name}, Your experience as {title} caught my attention. I'm building my network with professionals in similar fields.
# Anti-Detection
RANDOMIZE_USER_AGENT=true
RANDOMIZE_WINDOW_SIZE=true
USE_STEALTH_MODE=true
# Monitoring
ENABLE_MONITORING=true
MONITOR_PORT=5000
METRICS_FILE=data/metrics.json