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 479B

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