www.milliways.info/settings.py

26 lines
548 B
Python
Raw Permalink Normal View History

2018-11-18 14:13:58 +00:00
# Project settings
## Do not show HTML fragments in the final build or in the _index.html
FILTER_PARTIALS = True
## Ignore the views listed here when building, even if they are full HTML pages
## You can use patterns here eg: "deprecated/*"
FILTER = [
'.DS_Store',
'webassets-cache/*',
'.webassets-cache',
'layout.html',
]
## When building, force the inclusion of all the HTML partials listed here.
## You can use patterns here eg: "alert-*.html"
INCLUDE = [
]
## Server
HOST = '0.0.0.0'
PORT = 8080
## Your own settings here