blob: b705228cce87bb6a168e14a7dfd16de4bf8bcd7d (
plain) (
blame)
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
32
33
34
35
36
37
38
39
40
41
|
# This is where all of your settings go for your development environment
[global]
# DATABASE
# pick the form for your database
# sqlobject.dburi="postgres://username@hostname/databasename"
# sqlobject.dburi="mysql://username:password@hostname:port/databasename"
# sqlobject.dburi="sqlite:///file_name_and_path"
# for Windows users, sqlite URIs look like:
# sqlobject.dburi="sqlite:///drive_letter|/path/to/file"
# VIEW
# kid.outputformat="html"
# The sitetemplate is used for overall styling of a site that
# includes multiple TurboGears applications
# tg.sitetemplate="<packagename.templates.templatename>"
# SERVER
# Some server parameters that you may want to tweak
# server.socketPort=8080
# Disable the debug output at the end on pages.
# logDebugInfoFilter.on = False
server.environment="development"
autoreload.package="beweb"
[/static]
staticFilter.on = True
staticFilter.dir = "static"
[/favicon.ico]
staticFilter.on = True
staticFilter.file = "static/images/favicon.ico"
|