Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. # configurazione standard Django per il firewall.
  2. DEBUG = True
  3. TEMPLATE_DEBUG = DEBUG
  4. ADMINS = (
  5. # ('la tua email', 'xxx@xxx.xx'),
  6. )
  7. MANAGERS = ADMINS
  8. DATABASE_ENGINE = ''
  9. DATABASE_NAME = ''
  10. DATABASE_USER = ''
  11. DATABASE_PASSWORD = ''
  12. DATABASE_HOST = ''
  13. DATABASE_PORT = ''
  14. TIME_ZONE = 'Italy/Rome'
  15. LANGUAGE_CODE = 'it-it
  16. SITE_ID = 1
  17. USE_I18N = True
  18. MEDIA_ROOT = ''
  19. MEDIA_URL = ''
  20. ADMIN_MEDIA_PREFIX = '/media/'
  21. SECRET_KEY = 'a@$zhgi3js2$f09pgc%y-1)tuexx&okcha++a+!m+*m4y=nin'
  22. TEMPLATE_LOADERS = (
  23. 'django.template.loaders.filesystem.load_template_source',
  24. 'django.template.loaders.app_directories.load_template_source',
  25. # 'django.template.loaders.eggs.load_template_source',
  26. )
  27.  
  28. MIDDLEWARE_CLASSES = (
  29. 'django.middleware.common.CommonMiddleware',
  30. 'django.contrib.sessions.middleware.SessionMiddleware',
  31. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  32. )
  33.  
  34. ROOT_URLCONF = 'john.urls'
  35.  
  36. TEMPLATE_DIRS = (
  37.  
  38. )
  39.  
  40. INSTALLED_APPS = (
  41. 'django.contrib.auth',
  42. 'django.contrib.contenttypes',
  43. 'django.contrib.sessions',
  44. 'django.contrib.sites',
  45. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement