Piki is a minimal wiki
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.py 511B

123456789101112131415161718192021222324252627
  1. #
  2. # Piki Setting
  3. #
  4. STARTPAGE = "startpage"
  5. USERS_SELF_REGISTRATION = False
  6. #
  7. # General settings
  8. #
  9. # APP_NAME is used for logging
  10. APP_NAME = 'piki'
  11. # SECURITY WARNING: don't run with debug turned on in production!
  12. DEBUG = False
  13. # SECURITY WARNING: don't run with a dummy secret in production!
  14. SECRET_KEY = None
  15. # SECURITY WARNING: don't run with '0.0.0.0' in in production, unless you know what you are doing!
  16. ALLOWED_HOSTS = ['127.0.0.1', 'localhost', ]
  17. #
  18. # Style settings
  19. #
  20. DEFAULT_THEME = 'clear-blue'