Advertisement
Guest User

Untitled

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