bae705aa97
- Add NFC ePassport roadmap (ICAO 9303, eIDAS) - Add TensorFlow.js edge face detection (BlazeFace) - Add structured audit logger (GDPR-compliant) - Risk scoring support Part of KYC Apple Native UX v1.1.0
21 lines
371 B
Bash
21 lines
371 B
Bash
# Database
|
|
POSTGRES_PASSWORD=iom_secret
|
|
DATABASE_URL=postgresql://iom:iom_secret@localhost:5432/iom
|
|
|
|
# Redis
|
|
REDIS_URL=redis://localhost:6379/0
|
|
|
|
# Celery
|
|
CELERY_BROKER_URL=redis://localhost:6379/1
|
|
CELERY_RESULT_BACKEND=redis://localhost:6379/2
|
|
|
|
# JWT
|
|
JWT_SECRET=your-secret-key-here
|
|
|
|
# Environment
|
|
ENVIRONMENT=development
|
|
LOG_LEVEL=INFO
|
|
|
|
# Grafana
|
|
GRAFANA_PASSWORD=admin
|