Skip to content

Commit

Permalink
Merge pull request #1637 from WikiWatershed/feature/tt/allow-developm…
Browse files Browse the repository at this point in the history
…ent-hosts

Allow usage of development URLs locally
  • Loading branch information
rajadain authored Dec 6, 2016
2 parents 7b6aa4c + d9d5280 commit 1114772
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/mmw/mmw/settings/development.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@
from base import * # NOQA


# SITE CONFIGURATION
# Hosts/domain names that are valid for this site
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
ALLOWED_HOSTS = [
'.ngrok.io',
'.internal.azavea.com',
'.local',
'localhost',
]
# END SITE CONFIGURATION

# DEBUG CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#debug
DEBUG = True
Expand Down

0 comments on commit 1114772

Please sign in to comment.