Project And Teamorganisation Tool
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #######################################################################
  2. # Configuration of your django application
  3. #######################################################################
  4. #
  5. # Themes library
  6. #
  7. # This defines the default theme, if no theme is set in the django parameters
  8. DEFAULT_THEME = 'clear-green'
  9. #
  10. # Users library
  11. #
  12. # This enables or disables the self registration
  13. # If you enable self registration it is recommended to configure "Django mail / smtp settings"
  14. USERS_SELF_REGISTRATION = False
  15. # This enables or disables the mail validation after self registration
  16. USERS_MAIL_VALIDATION = True
  17. # This enables or disables the account activation by an admin after self registration
  18. USERS_ADMIN_ACTIVATION = True
  19. # The timeout for password recovery and mail validation tokens send via email
  20. PASSWORD_RESET_TIMEOUT = 60 * 60 * 3 # 3 hours
  21. #
  22. # Django mail / smtp settings
  23. #
  24. # The hostname of the smtp server
  25. # EMAIL_HOST = "<smtp_host>"
  26. # The port used for the smtp connection
  27. # EMAIL_PORT = <port_number>
  28. # The username for smtp authentication
  29. # EMAIL_HOST_USER = "<smtp_user>"
  30. # The password for smtp authentication
  31. # EMAIL_HOST_PASSWORD = "<smtp_password>"
  32. # The sender of piki emails
  33. # EMAIL_FROM = "piki@<host>"
  34. # Set to True, if TLS shall be used
  35. # EMAIL_USE_TLS = False
  36. # Set to True, if SSL shall be used
  37. # EMAIL_USE_SSL = True
  38. # The smtp timeout
  39. # EMAIL_TIMEOUT =
  40. # Define a ssl keyfile
  41. # EMAIL_SSL_KEYFILE =
  42. # Define an ssl certificate
  43. # EMAIL_SSL_CERTFILE =
  44. #
  45. # Django
  46. #
  47. # This defines the mode of the running server
  48. # SECURITY WARNING: don't run with debug turned on in production!
  49. DEBUG = False
  50. # This a the secret key for your application.
  51. # SECURITY WARNING: don't run with a dummy secret in production! And don't let others read this key!
  52. SECRET_KEY = None
  53. # Define the administrators (for mail delivery)
  54. ADMINS = [("PaTT", EMAIL_FROM), ]
  55. # This defines the listener hostnames for your django server
  56. # SECURITY WARNING: don't run with '0.0.0.0' in in production, unless you know what you are doing!
  57. # ALLOWED_HOSTS = ['<YOUR_SERVER_HOSTNAME>', ]
  58. # This might be needed for usage in a docker environment
  59. # CSRF_TRUSTED_ORIGINS = ['<YOUR_SERVER_URL>', ]