push-things/django-th

View on GitHub
django_th/settings_docker.py

Summary

Maintainability
A
0 mins
Test Coverage
from .th_settings import *

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'postgres',
        'USER': 'postgres',
        # 'PASSWORD': 'th_pass',
        'HOST': 'db',
        'PORT': 5432,
    }
}