Created
August 5, 2016 15:04
-
-
Save abnersajr/1363d8cd4280b62b9f227a0a02537c0d to your computer and use it in GitHub Desktop.
Settings Local used on beagleship with livereload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from settings import * | |
LOCAL_SETTINGS = True | |
DEBUG = True | |
TEMPLATE_DEBUG = True | |
ALLOWED_HOSTS = [] | |
DATABASES = {} | |
MIDDLEWARE_CLASSES += ( | |
'livereload.middleware.LiveReloadScript', | |
) | |
INSTALLED_APPS += ( | |
'livereload', | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment