Guest User

Untitled

a guest
Jun 21st, 2016
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. from .common import *
  2.  
  3. MEDIA_URL = "http://example.com/media/"
  4. STATIC_URL = "http://example.com/static/"
  5. ADMIN_MEDIA_PREFIX = "http://example.com/static/admin/"
  6. SITES["front"]["scheme"] = "http"
  7. SITES["front"]["domain"] = "example.com"
  8.  
  9. SECRET_KEY = "theveryultratopsecretkey"
  10.  
  11. DEBUG = False
  12. TEMPLATE_DEBUG = False
  13. PUBLIC_REGISTER_ENABLED = True
  14.  
  15. DEFAULT_FROM_EMAIL = "no-reply@example.com"
  16. SERVER_EMAIL = DEFAULT_FROM_EMAIL
  17.  
  18. # Uncomment and populate with proper connection parameters
  19. # for enable email sending. EMAIL_HOST_USER should end by @domain.tld
  20. #EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"
  21. #EMAIL_USE_TLS = False
  22. #EMAIL_HOST = "localhost"
  23. #EMAIL_HOST_USER = ""
  24. #EMAIL_HOST_PASSWORD = ""
  25. #EMAIL_PORT = 25
  26.  
  27. # Uncomment and populate with proper connection parameters
  28. # for enable github login/singin.
  29. #GITHUB_API_CLIENT_ID = "yourgithubclientid"
  30. #GITHUB_API_CLIENT_SECRET = "yourgithubclientsecret"
Add Comment
Please, Sign In to add comment