27 lines
479 B
Python
27 lines
479 B
Python
#
|
|
# Piki Setting
|
|
#
|
|
STARTPAGE = "startpage"
|
|
|
|
|
|
#
|
|
# General settings
|
|
#
|
|
# APP_NAME is used for logging
|
|
APP_NAME = 'piki'
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = False
|
|
|
|
# SECURITY WARNING: don't run with a dummy secret in production!
|
|
SECRET_KEY = None
|
|
|
|
# SECURITY WARNING: don't run with '0.0.0.0' in in production, unless you know what you are doing!
|
|
ALLOWED_HOSTS = ['127.0.0.1', 'localhost', ]
|
|
|
|
#
|
|
# Style settings
|
|
#
|
|
DEFAULT_THEME = 'clear-blue'
|
|
|