qmsk_pngtile/settings/project.py
author Tero Marttila <terom@qmsk.net>
Tue, 04 Jul 2017 00:00:03 +0300
changeset 253 5886ca11cae4
parent 237 6698dabcc425
permissions -rw-r--r--
qmsk_pngtile: default setting for STATIC_ROOT
## 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_ROOT = './var/static'
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',
)