ConceptPortal-public/rsconcept/backend/.env.prod

24 lines
583 B
Plaintext
Raw Normal View History

2023-08-08 15:33:23 +03:00
# Application settings
ALLOWED_HOSTS=localhost;portal.acconcept.ru;dev.concept.ru
2023-08-09 16:55:53 +03:00
CSRF_TRUSTED_ORIGINS=https://dev.concept.ru:3000;https://localhost:3000;https://portal.acconcept.ru:3000
CORS_ALLOWED_ORIGINS=https://dev.concept.ru:3000;https://localhost:3000;https://portal.acconcept.ru:3000
2023-08-08 15:33:23 +03:00
# File locations
STATIC_ROOT=/home/app/web/static
MEDIA_ROOT=/home/app/web/media
# Database settings
DB_ENGINE=django.db.backends.postgresql_psycopg2
DB_NAME=portal-db
DB_USER=portal-admin
DB_HOST=postgresql-db
DB_PORT=5432
# Debug settings
DEBUG=0
PYTHONDEVMODE=0
PYTHONTRACEMALLOC=0