Skip to content

Commit

Permalink
DEBUG option disabled by default.
Browse files Browse the repository at this point in the history
utf-8 coding for the file solving issues like admins with diacritic chars in the name.

ALLOWED_HOSTS set to accept '*' without this I could not start the app.
  • Loading branch information
exploy committed Jul 11, 2018
1 parent 103d3f3 commit 72578a9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion turkle/settings.py
@@ -1,7 +1,9 @@
# -*- coding: utf-8 -*-
import os
# Django settings for turkle project.

DEBUG = True
DEBUG = False
ALLOWED_HOSTS = ['*']

ADMINS = (
# ('Your Name', 'your_email@example.com'),
Expand Down

0 comments on commit 72578a9

Please sign in to comment.