Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. DATABASE_ENGINE = 'mysql' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'.
  2. DATABASE_NAME = 'koldcastdjango' # Or path to database file if using sqlite3.
  3. DATABASE_USER = 'root' # Not used with sqlite3.
  4. DATABASE_PASSWORD = 'yd3k' # Not used with sqlite3.
  5. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
  6. DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
  7.  
  8. DEBUG = True
  9. TEMPLATE_DEBUG = DEBUG
  10.  
  11. TEMPLATE_DIRS = (
  12. # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
  13. # Always use forward slashes, even on Windows.
  14. # Don't forget to use absolute paths, not relative paths.
  15. 'templates',
  16. )
  17.  
  18. SESSION_COOKIE_DOMAIN = None
  19.  
  20. MEDIA_ROOT = '/Users/dev01/Code/Koldcast Centerstage/branches/django_111_no_ee/koldcast/media/'
  21. MEDIA_URL = '/media/'
  22.  
  23. CACHE_BACKEND = 'file:///Users/dev01/django_cache'
  24. LOG_DELAY_PATH = '/Users/dev01/' #needs trailing slash
  25. LOG_DELAY= False
  26.  
  27. AUTHORIZE_NET_URL = 'apitest.authorize.net'
  28. AUTHORIZE_NET_API_LOGIN = '3aN3Gh5Fhz'
  29. AUTHORIZE_NET_KEY = '75aBdG42Rpa33t33'
  30.  
  31. HOST_MIDDLEWARE_URLCONF_MAP = {
  32. 'apps.koldcast.tv': 'koldcast.apps_urls',
  33. 'apps.koldcast:8000': 'koldcast.apps_urls',
  34. 'partners.koldcast:8000': 'koldcast.partners_urls',
  35. 'partners.koldcast.tv': 'koldcast.partners_urls',
  36. 'centerstage.koldcast.tv': 'koldcast.centerstage_urls',
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement