-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (29 loc) · 1.03 KB
/
.env.example
File metadata and controls
33 lines (29 loc) · 1.03 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
# --- Database Configuration ---
# Path to the SQLite database file
DATABASE_PATH=LEADs.db
# --- API Configuration ---
# Port the API service will listen on (e.g., 8000)
API_PORT=8000
# Host address for the API (e.g., 0.0.0.0 or localhost)
API_HOST=0.0.0.0
# --- Scraper Settings ---
# Timeout for requests in seconds
SCRAPER_TIMEOUT=30
# Number of retries for failed requests
SCRAPER_RETRIES=3
# API Key for Serper.dev (Search Engine API)
SERPER_API_KEY=your_serper_api_key_here
# Maximum number of concurrent threads for Deep Scrape
SCRAPER_MAX_WORKERS=3
# Maximum number of search results/links to process per run
SERPER_MAX_RESULTS=5
# --- Webhook & Integration ---
# Destination URL for sending data (e.g., Make.com, Zapier)
WEBHOOK_URL=https://hook.eu1.make.com/your_unique_endpoint
# Number of leads to send in a single webhook request
WEBHOOK_BATCH_SIZE=3
# Secret key or identifier for Lead processing in Make
MAKE_LEAD_KEY=your_make_lead_key_here
# --- Logging ---
# Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
LOG_LEVEL=DEBUG