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
21 lines
718 B
Plaintext
21 lines
718 B
Plaintext
# Copy this file to .env and fill in your values
|
|
DEBUG=True
|
|
SECRET_KEY=change-me-in-production
|
|
ALLOWED_HOSTS=localhost,127.0.0.1
|
|
DB_NAME=saas_platform
|
|
DB_USER=postgres
|
|
DB_PASSWORD=devpass
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
REDIS_URL=redis://localhost:6379/0
|
|
JWT_SIGNING_KEY=change-me-in-production
|
|
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_SERVER_KEY=SB-Mid-server-YOUR_SERVER_KEY
|
|
MIDTRANS_CLIENT_KEY=SB-Mid-client-YOUR_CLIENT_KEY
|
|
NEXT_PUBLIC_API_URL=http://localhost:8000/api/v1
|
|
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
|
HEALTHCARE_DATA_ENCRYPTION=True
|
|
AUDIT_LOG_ENABLED=True
|
|
DATA_RETENTION_DAYS=90 |