qmsk_www/settings/project.py
author Tero Marttila <terom@qmsk.net>
Sat, 04 Oct 2014 13:46:07 +0300
changeset 235 2fb2928eed8c
parent 234 qmsk_www/settings/site.py@70b425280964
child 146 68027d1d4f2b
permissions -rw-r--r--
qmsk_www: cleanup settings
## 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/'

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',
)