CoolFace
Apppublic

rudrani-rane/ATIS

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes
.env.example70 linesDownload Raw Back to root
1# ================================================
2# ATIS - Environment Configuration
3# Copy this file to .env and customize values
4# ================================================
5
6# ================================
7# Application Settings
8# ================================
9APP_ENV=production
10DEBUG=false
11SECRET_KEY=your-secret-key-here-change-this-in-production
12
13# ================================
14# Database Configuration
15# ================================
16DATABASE_URL=postgresql://atis_user:your_password@localhost:5432/atis
17POSTGRES_PASSWORD=your_secure_password_here
18
19# ================================
20# Redis Configuration
21# ================================
22REDIS_URL=redis://:your_redis_password@localhost:6379/0
23REDIS_PASSWORD=your_redis_password_here
24
25# ================================
26# NASA API
27# ================================
28NASA_API_KEY=DEMO_KEY
29
30# ================================
31# JWT Authentication
32# ================================
33JWT_SECRET_KEY=your-jwt-secret-key-change-this
34JWT_ALGORITHM=HS256
35ACCESS_TOKEN_EXPIRE_MINUTES=30
36
37# ================================
38# WebSocket Configuration
39# ================================
40WS_MAX_CONNECTIONS=1000
41WS_HEARTBEAT_INTERVAL=30
42
43# ================================
44# Monitoring & Logging
45# ================================
46SENTRY_DSN=
47LOG_LEVEL=INFO
48
49# ================================
50# Email Settings (Optional)
51# ================================
52SMTP_HOST=smtp.gmail.com
53SMTP_PORT=587
54SMTP_USER=your-email@gmail.com
55SMTP_PASSWORD=your-app-password
56EMAIL_FROM=noreply@atis.local
57
58# ================================
59# Grafana (Monitoring)
60# ================================
61GRAFANA_PASSWORD=admin
62
63# ================================
64# Production Optimizations
65# ================================
66WORKERS=4
67MAX_REQUESTS=1000
68MAX_REQUESTS_JITTER=50
69TIMEOUT=120
70