Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. """
  2. Django settings for website_yohan project.
  3.  
  4. Generated by 'django-admin startproject' using Django 1.9.
  5.  
  6. For more information on this file, see
  7. https://docs.djangoproject.com/en/1.9/topics/settings/
  8.  
  9. For the full list of settings and their values, see
  10. https://docs.djangoproject.com/en/1.9/ref/settings/
  11. """
  12.  
  13. import os
  14.  
  15. # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
  16. BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
  17.  
  18.  
  19. # Quick-start development settings - unsuitable for production
  20. # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
  21.  
  22. # SECURITY WARNING: keep the secret key used in production secret!
  23. SECRET_KEY = '*****'
  24.  
  25. # SECURITY WARNING: don't run with debug turned on in production!
  26. DEBUG = False
  27.  
  28. ALLOWED_HOSTS = ['www.yohan.vodka']
  29.  
  30.  
  31. # Application definition
  32.  
  33. INSTALLED_APPS = [
  34. 'django.contrib.admin',
  35. 'django.contrib.auth',
  36. 'django.contrib.contenttypes',
  37. 'django.contrib.sessions',
  38. 'django.contrib.messages',
  39. 'django.contrib.staticfiles',
  40. 'contact',
  41. 'blog',
  42. ]
  43.  
  44. MIDDLEWARE_CLASSES = [
  45. 'django.middleware.security.SecurityMiddleware',
  46. 'django.contrib.sessions.middleware.SessionMiddleware',
  47. 'django.middleware.common.CommonMiddleware',
  48. 'django.middleware.csrf.CsrfViewMiddleware',
  49. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  50. 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
  51. 'django.contrib.messages.middleware.MessageMiddleware',
  52. 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  53. ]
  54.  
  55. ROOT_URLCONF = 'website_yohan.urls'
  56.  
  57. TEMPLATES = [
  58. {
  59. 'BACKEND': 'django.template.backends.django.DjangoTemplates',
  60. 'DIRS': [os.path.join(BASE_DIR, 'templates')],
  61. 'APP_DIRS': True,
  62. 'OPTIONS': {
  63. 'context_processors': [
  64. 'django.template.context_processors.debug',
  65. 'django.template.context_processors.request',
  66. 'django.contrib.auth.context_processors.auth',
  67. 'django.contrib.messages.context_processors.messages',
  68. ],
  69. },
  70. },
  71. ]
  72.  
  73. WSGI_APPLICATION = 'website_yohan.wsgi.application'
  74.  
  75.  
  76. # Database
  77. # https://docs.djangoproject.com/en/1.9/ref/settings/#databases
  78.  
  79. DATABASES = {
  80. 'default': {
  81. 'ENGINE': 'django.db.backends.postgresql',
  82.  
  83. 'NAME': 'database_webfaction',
  84. 'USER': 'yohan8',
  85. 'PASSWORD':'****',
  86. 'HOST':'127.0.0.1',
  87. 'PORT':'5432',
  88. }
  89. }
  90.  
  91. # Password validation
  92. # https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
  93.  
  94. AUTH_PASSWORD_VALIDATORS = [
  95. {
  96. 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
  97. },
  98. {
  99. 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
  100. },
  101. {
  102. 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
  103. },
  104. {
  105. 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
  106. },
  107. ]
  108.  
  109.  
  110. # Internationalization
  111. # https://docs.djangoproject.com/en/1.9/topics/i18n/
  112.  
  113. LANGUAGE_CODE = 'fr-FR'
  114.  
  115. TIME_ZONE = 'UTC'
  116.  
  117. USE_I18N = True
  118.  
  119. USE_L10N = True
  120.  
  121. USE_TZ = True
  122.  
  123.  
  124. # Static files (CSS, JavaScript, Images)
  125. # https://docs.djangoproject.com/en/1.9/howto/static-files/
  126.  
  127. STATIC_URL = 'http://yohan.vodka/static/'
  128. STATICFILES_DIRS = (BASE_DIR,)
  129. STATIC_ROOT = '/home/yohan8/webapps/static_media/'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement