-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig
31 lines (26 loc) · 842 Bytes
/
config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[global]
server.socket_host: "0.0.0.0"
[db]
conn_string = 'sqlite3:///home/vagrant/dev/bgtrain/db/db.sqlite'
[gnubg]
program_path = '/usr/bin/gnubg'
commands_path = r'/home/vagrant/dev/bgtrain/src/bgtrain/gnubgautorc_pythonanywhere'
[/]
tools.staticdir.root = '/home/vagrant/dev/bgtrain/src/bgtrain'
tools.sessions.on = True
tools.sessions.storage_type = "file"
tools.sessions.storage_path = '/home/vagrant/dev/bgtrain/sessions'
tools.sessions.timeout = 36000
tools.gzip.on = True
tools.trailing_slash.missing = True
show.stacktraces = True
[/static]
tools.staticdir.on = True
tools.staticdir.dir = 'static'
tools.caching.on = False
tools.caching.delay = 3600
[/static/cacheable]
tools.staticdir.on = True
tools.staticdir.dir = 'static/cacheable'
tools.expires.on = True
tools.expires.secs = 5 * 24 * 3600