-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (32 loc) · 931 Bytes
/
.env.example
File metadata and controls
41 lines (32 loc) · 931 Bytes
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
# API Keys
GOOGLE_PLACES_API_KEY=your_google_places_api_key_here
YELP_API_KEY=your_yelp_api_key_here
# Database Configuration
DB_TYPE=postgresql # or sqlite for development
DB_HOST=localhost
DB_PORT=5432
DB_NAME=clinic_intelligence
DB_USER=your_db_user
DB_PASSWORD=your_db_password
# For SQLite (development)
SQLITE_DB_PATH=data/clinic_intelligence.db
# Geographic Focus
TARGET_CITY=Chicago
TARGET_STATE=IL
TARGET_COUNTRY=US
# Search Parameters
SEARCH_RADIUS_METERS=5000
MAX_RESULTS_PER_QUERY=60
# Clinic Categories
CLINIC_TYPES=urgent_care,primary_care,specialty_clinic,dental_clinic,physical_therapy
# Service Keywords for Trends
SERVICE_KEYWORDS=urgent care,walk-in clinic,family doctor,pediatric clinic,dental emergency,physical therapy
# Scheduling
DAILY_REFRESH_TIME=02:00
DATA_RETENTION_DAYS=365
# Logging
LOG_LEVEL=INFO
LOG_FILE=logs/clinic_intelligence.log
# Rate Limiting
API_RATE_LIMIT_DELAY=1.0
MAX_RETRIES=3