-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
46 lines (46 loc) · 1.08 KB
/
config.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"app": {
"name": "CareBridge",
"version": "0.1.0",
"environment": "development",
"port": 3001,
"baseUrl": "http://localhost:3001"
},
"database": {
"host": "localhost",
"port": 5432,
"name": "carebridge_dev",
"username": "postgres",
"password": "password"
},
"security": {
"jwtSecret": "carebridge-jwt-secret-key-change-in-production",
"jwtExpiry": "24h",
"encryptionKey": "carebridge-encryption-key-change-in-production",
"corsOrigins": [
"http://localhost:3000",
"http://localhost:3001",
"https://carebridge.example.com"
]
},
"healthcare": {
"culturalSensitivity": true,
"multiUserSupport": true,
"privacyProtection": true,
"multilingualSupport": true
},
"features": {
"familyHealthDashboard": true,
"culturalTranslation": true,
"multiUserInterface": true,
"emergencyProtocol": false,
"lowLiteracySupport": true
},
"ai": {
"enabled": true,
"provider": "google_gemini",
"model": "gemini-2.0-flash",
"timeoutMs": 6000,
"requireConsentHeader": true
}
}