|
@@ -0,0 +1,63 @@
|
|
|
|
+"""
|
|
|
|
+Django settings for testproject project.
|
|
|
|
+
|
|
|
|
+For more information on this file, see
|
|
|
|
+https://docs.djangoproject.com/en/1.6/topics/settings/
|
|
|
|
+
|
|
|
|
+For the full list of settings and their values, see
|
|
|
|
+https://docs.djangoproject.com/en/1.6/ref/settings/
|
|
|
|
+"""
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+from misago.conf.defaults import *
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+import os
|
|
|
|
+BASE_DIR = os.path.dirname(os.path.dirname(__file__))
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+SECRET_KEY = 'wxl2=un5q24b&*2&6#&+j)$ou5j&k*sfhjoho1888ths^mq82c'
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+DEBUG = True
|
|
|
|
+
|
|
|
|
+TEMPLATE_DEBUG = True
|
|
|
|
+
|
|
|
|
+ALLOWED_HOSTS = []
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ROOT_URLCONF = 'testproject.urls'
|
|
|
|
+
|
|
|
|
+WSGI_APPLICATION = 'testproject.wsgi.application'
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+DATABASES = {
|
|
|
|
+ 'default': {
|
|
|
|
+ 'ENGINE': 'django.db.backends.sqlite3',
|
|
|
|
+ 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+LANGUAGE_CODE = 'en-us'
|
|
|
|
+
|
|
|
|
+TIME_ZONE = 'UTC'
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+STATIC_URL = '/static/'
|