# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'gz3+!uki2+*(l_yx*)-mg*kroy7c!w1jllq14+dmd==p=p-(kp'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False

ALLOWED_HOSTS = ["*"]

# Database
# https://docs.djangoproject.com/en/1.9/ref/settings/#databases

DATABASES = {
    'default': {
        # Add "postgresql_psycopg2", "mysql", "sqlite3" or "oracle".    
        "ENGINE": "django.db.backends.postgresql_psycopg2",
        # DB name or path to database file if using sqlite3.
        "NAME": "wert1",
        # Not used with sqlite3.

        "USER": "wert1",
        "PASSWORD": "Wert1@2016",
        "HOST": "198.211.110.78",
        "PORT": "5432",
    }
}
