Advertisement
Guest User

Untitled

a guest
Aug 8th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. # Copyright (c) 2011-2013 Kunal Mehta. All rights reserved.
  2. # Use of this source code is governed by a BSD License found in README.md.
  3.  
  4. PIPELINE_ENABLED = True
  5.  
  6. DEBUG = False
  7.  
  8. ALLOWED_HOSTS = ['.stage.huxley.bmun.org']
  9.  
  10. ADMIN_SECRET = "easybeans1"
  11.  
  12. DATABASES = {
  13. 'default': {
  14. 'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
  15. 'NAME': 'huxley', # Or path to database file if using sqlite3.
  16. 'USER': 'bmun', # Not used with sqlite3.
  17. 'PASSWORD': 'ea6b038a', # Not used with sqlite3.
  18. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
  19. 'PORT': '', # Set to empty string for default. Not used with sqlite3.
  20. }
  21. }
  22.  
  23. STATIC_ROOT = '/home/bmun/webapps/huxley_stage_static' # Where your static files will be collected.
  24.  
  25. EMAIL_BACKEND = 'huxley.logging.mail.LoggingEmailBackend'
  26. EMAIL_HOST = 'smtp.webfaction.com' # Mail server hostname.
  27. EMAIL_HOST_USER = 'bmun' # Username for the mail server.
  28. EMAIL_HOST_PASSWORD = 'ea6b038a' # Password
  29. DEFAULT_FROM_EMAIL = 'tech@bmun.org' # Default address for the From: field.
  30. SERVER_EMAIL = 'tech@bmun.org' # Inbox on the server.
  31.  
  32. if not DEBUG:
  33. from .pipeline import PIPELINE_BROWSERIFY_BINARY
  34. PIPELINE_BROWSERIFY_BINARY = 'NODE_ENV=production ' + PIPELINE_BROWSERIFY_BINARY
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement