mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-25 20:40:36 +03:00
27 lines
655 B
Plaintext
27 lines
655 B
Plaintext
# Application settings
|
|
# WARNING! This config does not use 'real' production values for secrets
|
|
# DO NOT use PRODUCTION LOCAL build for deployment!
|
|
SECRET_KEY=s-55j!5jlan=x%8-6m1qnst^7s6nwby4dx@vei)5w8t)3_=mv1
|
|
ALLOWED_HOSTS=localhost
|
|
CSRF_TRUSTED_ORIGINS=http://localhost:3002;http://localhost:8002
|
|
CORS_ALLOWED_ORIGINS=http://localhost:3002
|
|
|
|
|
|
# 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=78ACF6C4F3
|
|
|
|
|
|
# Debug settings
|
|
DEBUG=1
|
|
PYTHONDEVMODE=1
|
|
PYTHONTRACEMALLOC=1 |