22 lines
602 B
Plaintext
22 lines
602 B
Plaintext
# Test Environment Configuration
|
|
DATABASE_URL="postgresql://postgres:testpassword@localhost:5434/rwa_backup_test?schema=public"
|
|
|
|
# Server
|
|
APP_PORT=3003
|
|
APP_ENV="test"
|
|
|
|
# Service Authentication
|
|
SERVICE_JWT_SECRET="test-super-secret-service-jwt-key-for-e2e-testing"
|
|
ALLOWED_SERVICES="identity-service,recovery-service"
|
|
|
|
# Encryption
|
|
BACKUP_ENCRYPTION_KEY="0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef"
|
|
BACKUP_ENCRYPTION_KEY_ID="test-key-v1"
|
|
|
|
# Rate Limiting (higher for tests)
|
|
MAX_RETRIEVE_PER_DAY=100
|
|
MAX_STORE_PER_MINUTE=100
|
|
|
|
# Audit
|
|
AUDIT_LOG_RETENTION_DAYS=1
|