1da064d3a5d3c2fa19604f8424836539acbb0359
2 Django settings for mlpccg-web project.
4 For more information on this file, see
5 https://docs.djangoproject.com/en/1.6/topics/settings/
7 For the full list of settings and their values, see
8 https://docs.djangoproject.com/en/1.6/ref/settings/
11 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
13 BASE_DIR
= os
.path
.dirname(os
.path
.dirname(__file__
))
16 # Quick-start development settings - unsuitable for production
17 # See https://docs.djangoproject.com/en/1.6/howto/deployment/checklist/
19 # SECURITY WARNING: keep the secret key used in production secret!
20 SECRET_KEY
= 'iqk@e(3cavf&!ewvx_0t8m=p5kh(rl_=td&pe!afhu@fiu%j_w'
22 # SECURITY WARNING: don't run with debug turned on in production!
30 # Application definition
33 'django.contrib.admin',
34 'django.contrib.auth',
35 'django.contrib.contenttypes',
36 'django.contrib.sessions',
37 'django.contrib.messages',
38 'django.contrib.staticfiles',
39 'django.contrib.humanize',
43 MIDDLEWARE_CLASSES
= (
44 'django.contrib.sessions.middleware.SessionMiddleware',
45 'django.middleware.common.CommonMiddleware',
46 'django.middleware.csrf.CsrfViewMiddleware',
47 'django.contrib.auth.middleware.AuthenticationMiddleware',
48 'django.contrib.messages.middleware.MessageMiddleware',
49 'django.middleware.clickjacking.XFrameOptionsMiddleware',
52 ROOT_URLCONF
= 'mlpccg-web.urls'
54 WSGI_APPLICATION
= 'mlpccg-web.wsgi.application'
58 # https://docs.djangoproject.com/en/1.6/ref/settings/#databases
62 'ENGINE': 'django.db.backends.sqlite3',
63 'NAME': os
.path
.join(BASE_DIR
, 'db.sqlite3'),
67 # Internationalization
68 # https://docs.djangoproject.com/en/1.6/topics/i18n/
70 LANGUAGE_CODE
= 'en-us'
81 # Static files (CSS, JavaScript, Images)
82 # https://docs.djangoproject.com/en/1.6/howto/static-files/
84 STATIC_URL
= '/static/'