Piki is a minimal wiki
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

config.py 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #######################################################################
  2. # Configuration of your django application
  3. #######################################################################
  4. #
  5. # Piki Setting
  6. #
  7. # The root page to be used
  8. STARTPAGE = "startpage"
  9. # Activate content management system (view)
  10. # CMS_MODE = True
  11. #
  12. # Users library
  13. #
  14. # This enables or disables the self registration
  15. USERS_SELF_REGISTRATION = False
  16. #
  17. # Themes library
  18. #
  19. # This defines the default theme, if no theme is set in the django parameters
  20. DEFAULT_THEME = 'clear-teal'
  21. #
  22. # Django
  23. #
  24. # This defines the mode of the running server
  25. # SECURITY WARNING: don't run with debug turned on in production!
  26. DEBUG = False
  27. # This a the secret key for your application.
  28. # SECURITY WARNING: don't run with a dummy secret in production! And don't let others read this key!
  29. SECRET_KEY = None
  30. # This defines the listener hostnames for your django server
  31. # SECURITY WARNING: don't run with '0.0.0.0' in in production, unless you know what you are doing!
  32. # ALLOWED_HOSTS = ['<YOUR_SERVER_HOSTNAME>', ]
  33. # This might be needed for usage in a docker environment
  34. # CSRF_TRUSTED_ORIGINS = ['<YOUR_SERVER_URL>', ]