terom@235: ## Settings for qmsk_www project terom@235: terom@235: # Application definition terom@214: INSTALLED_APPS = ( terom@214: 'django.contrib.staticfiles', terom@251: terom@233: 'qmsk.pages', terom@214: ) terom@214: terom@214: MIDDLEWARE_CLASSES = ( terom@214: terom@214: ) terom@214: terom@214: ROOT_URLCONF = 'qmsk_www.urls' terom@214: terom@214: WSGI_APPLICATION = 'qmsk_www.wsgi.application' terom@214: terom@235: ## Internationalization terom@235: # https://docs.djangoproject.com/en/1.7/topics/i18n/ terom@235: LANGUAGE_CODE = 'en-us' terom@235: terom@235: TIME_ZONE = 'UTC' terom@235: terom@235: USE_I18N = True terom@235: terom@235: USE_L10N = True terom@235: terom@235: USE_TZ = True terom@235: terom@214: ## Static files (CSS, JavaScript, Images) terom@214: # https://docs.djangoproject.com/en/1.7/howto/static-files/ terom@214: STATIC_URL = '/static/' terom@251: STATIC_ROOT = './var/static' terom@235: terom@214: STATICFILES_DIRS = ( terom@234: # django project files terom@214: './qmsk_www/static', terom@234: terom@234: # shared between django projects terom@234: './static', terom@214: ) terom@214: terom@214: ## Site templates terom@214: TEMPLATE_DIRS = ( terom@234: # django project files terom@214: './qmsk_www/templates', terom@234: terom@234: # shared between django projects terom@234: './templates', terom@214: )