qmsk_pngtile/settings/project.py
changeset 237 6698dabcc425
parent 235 2fb2928eed8c
child 253 5886ca11cae4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/qmsk_pngtile/settings/project.py	Sat Oct 04 14:36:02 2014 +0300
@@ -0,0 +1,50 @@
+## Settings for qmsk_pngtile project
+
+# Application definition
+INSTALLED_APPS = (
+    'django.contrib.staticfiles',
+
+    'qmsk.pngtile',
+)
+
+MIDDLEWARE_CLASSES = (
+
+)
+
+ROOT_URLCONF = 'qmsk_pngtile.urls'
+
+WSGI_APPLICATION = 'qmsk_pngtile.wsgi.application'
+
+## Internationalization
+# https://docs.djangoproject.com/en/1.7/topics/i18n/
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+## Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/1.7/howto/static-files/
+STATIC_URL = '/static/'
+
+STATICFILES_DIRS = (
+    # django project files
+    './qmsk_pngtile/static',
+
+    # shared between django projects
+    './static',
+)
+
+## Site templates
+TEMPLATE_DIRS = (
+    # django project files
+    './qmsk_pngtile/templates',
+
+    # shared between django projects
+    './templates',
+)
+