-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
48 lines (31 loc) · 1.06 KB
/
env.example
File metadata and controls
48 lines (31 loc) · 1.06 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
# ============================================
# 🌐 Configuration générale
# ============================================
PORT=5000
NODE_ENV=production
# ============================================
# 🔐 Authentification
# ============================================
JWT_SECRET=change_me_in_production
JWT_EXPIRES_IN=1h
# ============================================
# 🗄️ Base de données (optionnel)
# ============================================
# PostgreSQL (docker-compose)
# DATABASE_URL=postgres://exapi:password@db:5432/exapi
# SQLite (local)
# DATABASE_URL=file:./exapi.db
# ============================================
# 📨 Services externes
# ============================================
EXTERNAL_API_URL=https://api.example.com
EXTERNAL_API_KEY=your_api_key_here
# ============================================
# 🧪 Logs & Debug
# ============================================
LOG_LEVEL=info
DEBUG=false
# ============================================
# ❤️ Healthcheck
# ============================================
HEALTHCHECK_PATH=/health