Piki is a minimal wiki
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

config.py 1.1KB

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