pokeapi/config/docker.py

17 lines
353 B
Python
Raw Normal View History

# Docker settings
2016-03-05 11:40:41 +00:00
from .settings import * # NOQA
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'pokeapi',
'USER': 'ash',
'PASSWORD': 'pokemon',
'HOST': 'localhost',
'PORT': '',
}
}
DEBUG = True
TASTYPIE_FULL_DEBUG = True