-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
47 lines (37 loc) · 994 Bytes
/
env.example
File metadata and controls
47 lines (37 loc) · 994 Bytes
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
# Application Settings
PROJECT_NAME=FinTech Platform
DEBUG=false
ENVIRONMENT=production
# Security
SECRET_KEY=change-this-to-a-random-secret-key-min-32-chars
ENCRYPTION_KEY=change-this-to-32-byte-encryption-key
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
REFRESH_TOKEN_EXPIRE_DAYS=7
# Database
DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/fintech_db
DATABASE_POOL_SIZE=20
DATABASE_MAX_OVERFLOW=10
# Redis
REDIS_URL=redis://localhost:6379/0
REDIS_SESSION_TTL=3600
# CORS
ALLOWED_ORIGINS=["http://localhost:3000","http://localhost:8000"]
# MFA
MFA_ISSUER_NAME=FinTech Platform
MFA_REQUIRED_FOR_ADMIN=true
# POPIA Compliance
DATA_RETENTION_DAYS=2555
AUDIT_LOG_RETENTION_DAYS=2555
ENABLE_AUDIT_LOGGING=true
ENABLE_DATA_MINIMIZATION=true
# Cloud Provider (for accountability)
CLOUD_PROVIDER=aws
REGION=us-east-1
AVAILABILITY_ZONES=["us-east-1a","us-east-1b","us-east-1c"]
# Logging
LOG_LEVEL=INFO
LOG_FORMAT=json
# Monitoring
ENABLE_METRICS=true
METRICS_PORT=9090