Some checks failed
CI/CD Pipeline / Run Tests (push) Failing after 45s
CI/CD Pipeline / Code Quality Checks (push) Failing after 48s
CI/CD Pipeline / Build Docker Images (push) Has been skipped
CI/CD Pipeline / Push to Gitea Registry (push) Has been skipped
CI/CD Pipeline / Deploy to Server (push) Has been skipped
29 lines
639 B
Plaintext
29 lines
639 B
Plaintext
# Test environment
|
|
DJANGO_SETTINGS_MODULE=settings.test
|
|
DEBUG=True
|
|
SECRET_KEY=test-secret-key-for-development
|
|
ALLOWED_HOSTS=localhost,127.0.0.1
|
|
|
|
# Database Settings
|
|
POSTGRES_DB=state_corp_test
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_HOST=localhost
|
|
POSTGRES_PORT=5432
|
|
|
|
# Redis Settings
|
|
REDIS_URL=redis://localhost:6379/0
|
|
REDIS_CACHE_URL=redis://localhost:6379/1
|
|
|
|
# Celery Settings
|
|
CELERY_BROKER_URL=redis://localhost:6379/0
|
|
CELERY_RESULT_BACKEND=redis://localhost:6379/0
|
|
|
|
# CORS Settings
|
|
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
|
|
|
|
# Logging
|
|
LOG_LEVEL=INFO
|
|
BACKUP_ENCRYPTION_KEY=
|
|
BACKUP_KEY_ID=test
|