-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
67 lines (55 loc) · 1.48 KB
/
env.example
File metadata and controls
67 lines (55 loc) · 1.48 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
57
58
59
60
61
62
63
64
65
66
67
# AI Automation Bot - Environment Variables Example
# Bu dosyayı .env olarak kopyalayın ve kendi değerlerinizle doldurun
# Application Settings
ENVIRONMENT=development
DEBUG=true
LOG_LEVEL=INFO
# Database Configuration
DB_HOST=localhost
DB_PORT=5432
DB_NAME=automation_db
DB_USER=ai_bot_user
DB_PASSWORD=your_secure_password_here
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=your_redis_password_here
REDIS_DB=0
# API Configuration
API_KEY=your_api_key_here
API_BASE_URL=https://api.example.com
API_TIMEOUT=30
# Security
ENCRYPTION_KEY=your_32_character_encryption_key_here
JWT_SECRET=your_jwt_secret_key_here
JWT_ALGORITHM=HS256
JWT_EXPIRATION=3600
# Email Configuration (for notifications)
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_USERNAME=your_email@gmail.com
EMAIL_PASSWORD=your_email_password_here
EMAIL_USE_TLS=true
# Slack Configuration (for notifications)
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/YOUR/SLACK/WEBHOOK
SLACK_CHANNEL=#automation
# Monitoring
PROMETHEUS_PORT=9090
GRAFANA_PORT=3000
# File Storage
STORAGE_PATH=/app/data
MODELS_PATH=/app/models
REPORTS_PATH=/app/reports
LOGS_PATH=/app/logs
# ML Configuration
ML_MODEL_PATH=/app/models
ML_DATA_PATH=/app/data
ML_REPORTS_PATH=/app/reports
# Docker Configuration
DOCKER_REGISTRY=your-registry.com
DOCKER_IMAGE_NAME=ai-automation-bot
DOCKER_TAG=latest
# Development Tools
PYTHONPATH=/app
FLASK_ENV=development
FLASK_DEBUG=true