Commit ba7db591 authored by Ilya Simonov's avatar Ilya Simonov

fix database settings

parent 74bc925a
Pipeline #7003 failed with stage
in 2 seconds
"""
Django settings for cp_video project.
Generated by 'django-admin startproject' using Django 3.0.6.
For more information on this file, see
https://docs.djangoproject.com/en/3.0/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.0/ref/settings/
"""
import os
import environ
import sys
......@@ -93,10 +81,10 @@ if DEVELOPMENT_MODE is True:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'cp_video',
'USER': 'postgres',
'PASSWORD': 'postgres',
'HOST': '127.0.0.1',
'NAME': env('DATABASE_NAME'),
'USER': env('DATABASE_USER'),
'PASSWORD': env('DATABASE_PASSWORD'),
'HOST': env('DATABASE_HOST')
}
}
elif len(sys.argv) > 0 and sys.argv[1] != 'collectstatic':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment