Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexryabtsev/f275409df9842b6e9598f39a6ea621c1 to your computer and use it in GitHub Desktop.
Save alexryabtsev/f275409df9842b6e9598f39a6ea621c1 to your computer and use it in GitHub Desktop.
from .base import *
ALLOWED_HOSTS = ['localhost']
DEBUG = True
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'local_db',
'HOST': '127.0.0.1',
'PORT': '5432',
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment