qmsk_www/settings/site.py
author Tero Marttila <terom@qmsk.net>
Sat, 04 Oct 2014 13:41:39 +0300
changeset 234 70b425280964
parent 233 f5227f26231b
permissions -rw-r--r--
move generic site template and static out of qmsk_www project
## Application definition
INSTALLED_APPS = (
    'django.contrib.staticfiles',
    
    'qmsk.pages',
)

MIDDLEWARE_CLASSES = (

)

ROOT_URLCONF = 'qmsk_www.urls'

WSGI_APPLICATION = 'qmsk_www.wsgi.application'

## Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/
STATIC_URL = '/static/'
STATICFILES_DIRS = (
    # django project files
    './qmsk_www/static',

    # shared between django projects
    './static',
)

## Site templates
TEMPLATE_DIRS = (
    # django project files
    './qmsk_www/templates',

    # shared between django projects
    './templates',
)