mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-25 20:40:36 +03:00
26 lines
673 B
Plaintext
26 lines
673 B
Plaintext
# Application settings
|
|
|
|
# SECRET_KEY=
|
|
ALLOWED_HOSTS=portal.acconcept.ru;dev.concept.ru
|
|
CSRF_TRUSTED_ORIGINS=https://dev.concept.ru:3000;https://dev.concept.ru:8000;https://portal.acconcept.ru;https://portal.acconcept.ru:8081;https://portal.acconcept.ru:8082
|
|
CORS_ALLOWED_ORIGINS=https://dev.concept.ru:3000;https://portal.acconcept.ru;https://portal.acconcept.ru:8081
|
|
|
|
|
|
# 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
|
|
# DB_PASSWORD=
|
|
|
|
|
|
# Debug settings
|
|
DEBUG=0
|
|
PYTHONDEVMODE=0
|
|
PYTHONTRACEMALLOC=0 |