1# Project settings
2
3## Do not show HTML fragments in the final build or in the _index.html
4FILTER_PARTIALS = True
5
6## Ignore the views listed here when building, even if they are full HTML pages
7## You can use patterns here eg: "deprecated/*"
8FILTER = [
9    '.DS_Store',
10    'webassets-cache/*',
11    '.webassets-cache',
12    'layout.html',
13    '*.nb.html',
14    'README.txt',
15    'static/*',
16    'notebooks/README*',
17    'notebooks/.gitignore',
18    'notebooks/*~',
19    'notebooks/*segment.html',
20    '*~'
21]
22
23## When building, force the inclusion of all the HTML partials listed here.
24## You can use patterns here eg: "alert-*.html"
25INCLUDE = [
26
27]
28
29## Server
30HOST = '0.0.0.0'
31PORT = 8080
32
33## Your own settings here
34