forked from Greyisheep/apiconf-agent
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathenv.example
More file actions
40 lines (32 loc) · 1.03 KB
/
env.example
File metadata and controls
40 lines (32 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
34
35
36
37
38
39
40
# Google ADK Configuration
GOOGLE_API_KEY=your_google_api_key_here
GOOGLE_MODEL_NAME=gemini-2.5-flash
# Google Maps API
GOOGLE_MAPS_API_KEY=your_google_maps_api_key_here
# Database Configuration
DATABASE_URL=postgresql://user:password@localhost/apiconf_agent
REDIS_URL=redis://localhost:6379/0
# Application Settings
APP_NAME=apiconf_agent
ENVIRONMENT=development
LOG_LEVEL=INFO
DEBUG=true
# Conference Information
CONFERENCE_VENUE_NAME="The Zone"
CONFERENCE_VENUE_ADDRESS="Plot 9, Gbagada Industrial Scheme beside UPS, Gbagada - Oworonshoki Expy, Lagos, Lagos, Nigeria 100234"
CONFERENCE_VENUE_COORDINATES="6.5481,3.3789"
CONFERENCE_DATES="July 18th & 19th, 2025"
SUPPORT_PHONE="+234-XXX-XXX-XXXX"
SUPPORT_EMAIL="support@apiconf.net"
# Web Scraping Settings
SCRAPING_DELAY=1
USER_AGENT="Mozilla/5.0 (compatible; APIConfBot/1.0)"
# Data Sources
GOOGLE_SHEETS_URL=
# API Configuration
API_HOST=0.0.0.0
API_PORT=8000
CORS_ORIGINS=["http://localhost:3000", "https://apiconf.net"]
# Security
SECRET_KEY=your-secret-key-here
ACCESS_TOKEN_EXPIRE_MINUTES=30