mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-22 19:33:10 +00:00
16 lines
353 B
Python
Executable file
16 lines
353 B
Python
Executable file
# Docker settings
|
|
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
|