diff options
author | 2018-08-31 21:04:15 +0000 | |
---|---|---|
committer | 2018-08-31 21:04:15 +0000 | |
commit | 52462b6fc5be74a6150530218ebe1b24e5e899e5 (patch) | |
tree | 8c6e0c238e25225fd55da0f99bb3aedcb9847aae /pysite/hosts.py | |
parent | Add a `Dockerfile`. (diff) | |
parent | Always upload cov reports, add pipenv cache. (diff) |
Merge branch 'django+add-gitlab-ci' into 'django'
Django - Add GitLab CI.
See merge request python-discord/projects/site!36
Diffstat (limited to 'pysite/hosts.py')
-rw-r--r-- | pysite/hosts.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pysite/hosts.py b/pysite/hosts.py index 827f49c3..67fc2451 100644 --- a/pysite/hosts.py +++ b/pysite/hosts.py @@ -4,10 +4,10 @@ from django_hosts import host, patterns host_patterns = patterns( '', # > | Subdomain | URL Module | Host entry name | - #host(r"admin", "admin", name="admin"), + # host(r"admin", "admin", name="admin"), host(r'api', 'api.urls', name='api'), - #host(r"staff", "staff", name="staff"), - #host(r"wiki", "wiki", name="wiki"), - #host(r"ws", "ws", name="ws"), + # host(r"staff", "staff", name="staff"), + # host(r"wiki", "wiki", name="wiki"), + # host(r"ws", "ws", name="ws"), host(r'.*', 'home.urls', name=settings.DEFAULT_HOST) ) |