qmsk_www/settings/project.py
author Tero Marttila <terom@qmsk.net>
Sat, 15 Jul 2017 12:29:43 +0300
changeset 260 1d7d2fbfc855
parent 251 f59ab9a1d760
permissions -rw-r--r--
pngtile fix settings symlink
## Settings for 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'

## 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/'
STATIC_ROOT = './var/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',
)