qmsk_pngtile/settings/project.py
changeset 237 6698dabcc425
parent 235 2fb2928eed8c
child 253 5886ca11cae4
equal deleted inserted replaced
236:4ca68e4eb386 237:6698dabcc425
       
     1 ## Settings for qmsk_pngtile project
       
     2 
       
     3 # Application definition
       
     4 INSTALLED_APPS = (
       
     5     'django.contrib.staticfiles',
       
     6 
       
     7     'qmsk.pngtile',
       
     8 )
       
     9 
       
    10 MIDDLEWARE_CLASSES = (
       
    11 
       
    12 )
       
    13 
       
    14 ROOT_URLCONF = 'qmsk_pngtile.urls'
       
    15 
       
    16 WSGI_APPLICATION = 'qmsk_pngtile.wsgi.application'
       
    17 
       
    18 ## Internationalization
       
    19 # https://docs.djangoproject.com/en/1.7/topics/i18n/
       
    20 LANGUAGE_CODE = 'en-us'
       
    21 
       
    22 TIME_ZONE = 'UTC'
       
    23 
       
    24 USE_I18N = True
       
    25 
       
    26 USE_L10N = True
       
    27 
       
    28 USE_TZ = True
       
    29 
       
    30 ## Static files (CSS, JavaScript, Images)
       
    31 # https://docs.djangoproject.com/en/1.7/howto/static-files/
       
    32 STATIC_URL = '/static/'
       
    33 
       
    34 STATICFILES_DIRS = (
       
    35     # django project files
       
    36     './qmsk_pngtile/static',
       
    37 
       
    38     # shared between django projects
       
    39     './static',
       
    40 )
       
    41 
       
    42 ## Site templates
       
    43 TEMPLATE_DIRS = (
       
    44     # django project files
       
    45     './qmsk_pngtile/templates',
       
    46 
       
    47     # shared between django projects
       
    48     './templates',
       
    49 )
       
    50