Some checks failed
System Monitoring / Health Checks (push) Has been cancelled
System Monitoring / Performance Monitoring (push) Has been cancelled
System Monitoring / Database Monitoring (push) Has been cancelled
System Monitoring / Cache Monitoring (push) Has been cancelled
System Monitoring / Log Monitoring (push) Has been cancelled
System Monitoring / Resource Monitoring (push) Has been cancelled
System Monitoring / Uptime Monitoring (push) Has been cancelled
System Monitoring / Backup Monitoring (push) Has been cancelled
System Monitoring / Security Monitoring (push) Has been cancelled
System Monitoring / Monitoring Dashboard (push) Has been cancelled
System Monitoring / Alerting (push) Has been cancelled
Security Scanning / Dependency Scanning (push) Has been cancelled
Security Scanning / Code Security Scanning (push) Has been cancelled
Security Scanning / Secrets Scanning (push) Has been cancelled
Security Scanning / Container Security Scanning (push) Has been cancelled
Security Scanning / Compliance Checking (push) Has been cancelled
Security Scanning / Security Dashboard (push) Has been cancelled
Security Scanning / Security Remediation (push) Has been cancelled
42 lines
904 B
Plaintext
42 lines
904 B
Plaintext
# Django Settings
|
|
DEBUG=True
|
|
SECRET_KEY=your-secret-key-here
|
|
ALLOWED_HOSTS=localhost,127.0.0.1
|
|
|
|
# Database
|
|
DB_NAME=saas_platform
|
|
DB_USER=postgres
|
|
DB_PASSWORD=devpass
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
|
|
# Redis
|
|
REDIS_URL=redis://localhost:6379/0
|
|
|
|
# JWT
|
|
JWT_SIGNING_KEY=your-jwt-signing-key-here
|
|
|
|
# Stripe
|
|
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key
|
|
STRIPE_PUBLISHABLE_KEY=pk_test_your_stripe_publishable_key
|
|
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret
|
|
|
|
# Midtrans
|
|
MIDTRANS_SERVER_KEY=SB-Mid-server-YOUR_SERVER_KEY
|
|
MIDTRANS_CLIENT_KEY=SB-Mid-client-YOUR_CLIENT_KEY
|
|
|
|
# Email
|
|
EMAIL_HOST=smtp.gmail.com
|
|
EMAIL_PORT=587
|
|
EMAIL_USE_TLS=True
|
|
EMAIL_HOST_USER=your-email@gmail.com
|
|
EMAIL_HOST_PASSWORD=your-app-password
|
|
|
|
# Frontend
|
|
NEXT_PUBLIC_API_URL=http://localhost:8000/api/v1
|
|
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
|
|
|
# Security
|
|
HEALTHCARE_DATA_ENCRYPTION=True
|
|
AUDIT_LOG_ENABLED=True
|
|
DATA_RETENTION_DAYS=90 |