-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
44 lines (36 loc) · 1.11 KB
/
.env
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
# Osnovne nastavitve
DEBUG=True
API_VERSION=v1
# Varnostne nastavitve
SECRET_KEY=your-super-secret-key-here
# Podatkovne baze
DB_USER=insurcap_user
DB_PASSWORD=secure_password
DB_NAME=insurcap_db
DATABASE_URL=postgresql+asyncpg://${DB_USER}:${DB_PASSWORD}@db/${DB_NAME}
# API ključi
WHATSAPP_API_KEY=your-whatsapp-api-key
VIBER_API_KEY=your-viber-api-key
# API Keys
OPENWEATHER_API_KEY=your_openweather_api_key
CLIMATIQ_API_KEY=your_climatiq_api_key
GOOGLE_API_KEY=your_google_api_key
GOOGLE_SEARCH_ENGINE_ID=your_search_engine_id
# Application Settings
LOG_LEVEL=INFO
MAX_RETRIES=3
TIMEOUT=30
# Database Settings (če bo potrebno v prihodnosti)
DB_HOST=localhost
DB_PORT=5432
DB_NAME=insurtech
DB_USER=admin
DB_PASSWORD=secure_password
# Service URLs
WEATHER_API_URL=https://api.openweathermap.org/data/2.5/weather
CLIMATIQ_API_URL=https://beta3.api.climatiq.io
GOOGLE_SEARCH_API_URL=https://www.googleapis.com/customsearch/v1
TOGETHER_API_KEY=your_together_ai_key
STRIPE_SECRET_KEY=your_stripe_secret_key
STRIPE_PUBLIC_KEY=your_stripe_public_key
WEATHER_API_KEY=your_weather_api_key