Add initial implementations for forms and organization apps with serializers, factories, and admin configurations
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
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
This commit is contained in:
13
.env.test
13
.env.test
@@ -1,14 +1,15 @@
|
||||
# Test environment for user app
|
||||
# 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 - using existing tenant_db container
|
||||
POSTGRES_DB=project_dev
|
||||
# Database Settings
|
||||
POSTGRES_DB=state_corp_test
|
||||
POSTGRES_USER=postgres
|
||||
POSTGRES_PASSWORD=postgres
|
||||
POSTGRES_HOST=localhost
|
||||
POSTGRES_PORT=8432 # social_db container port
|
||||
POSTGRES_PORT=5432
|
||||
|
||||
# Redis Settings
|
||||
REDIS_URL=redis://localhost:6379/0
|
||||
@@ -22,4 +23,6 @@ CELERY_RESULT_BACKEND=redis://localhost:6379/0
|
||||
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
|
||||
|
||||
# Logging
|
||||
LOG_LEVEL=INFO
|
||||
LOG_LEVEL=INFO
|
||||
BACKUP_ENCRYPTION_KEY=
|
||||
BACKUP_KEY_ID=test
|
||||
|
||||
Reference in New Issue
Block a user