18 lines
551 B
Python
18 lines
551 B
Python
import os
|
|
import dj_database_url
|
|
|
|
|
|
DEFAULT_CONNECTION = dj_database_url.parse('postgres://djg:1774274aB@localhost:5432/qrtr-local')
|
|
|
|
DATABASES = {"default": DEFAULT_CONNECTION, }
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = 'jc@r$_x4$mp-b84&+m3s@hm7kpl$br-wa&50*&xjx^^fddg6q$'
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = True
|
|
|
|
ALLOWED_HOSTS = ['*'] |