root / trunk / dev.cfg

Revision 31, 1.7 kB (checked in by tim, 5 years ago)

Minor administrivia

Line 
1[global]
2# This is where all of your settings go for your development environment
3# Settings that are the same for both development and production
4# (such as template engine, encodings, etc.) all go in
5# cogplanet/config/app.cfg
6
7easy_config.enabled = True
8tg.scheduler = True
9
10# DATABASE
11
12# driver://username:password@host:port/database
13
14# pick the form for your database
15# sqlalchemy.dburi="postgres://username@hostname/databasename"
16# sqlalchemy.dburi="mysql://username:password@hostname:port/databasename"
17# sqlalchemy.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
18
19# If you have sqlite, here's a simple default to get you started
20# in development
21# sqlalchemy.dburi="sqlite:///devdata.sqlite"
22
23# set to 1 to make SQLAlchemy echo SQL commands on the console
24sqlalchemy.echo = 0
25
26# SERVER
27
28# Some server parameters that you may want to tweak
29# server.socket_port=8080
30
31# Enable the debug output at the end on pages.
32# log_debug_info_filter.on = False
33
34server.environment="development"
35autoreload.package="cogplanet"
36
37# session_filter.on = True
38
39# Set to True if you'd like to abort execution if a controller gets an
40# unexpected parameter. False by default
41tg.strict_parameters = True
42
43# LOGGING
44# Logging configuration generally follows the style of the standard
45# Python logging module configuration. Note that when specifying
46# log format messages, you need to use *() for formatting variables.
47# Deployment independent log configuration is in cogplanet/config/log.cfg
48[logging]
49
50[[loggers]]
51[[[cogplanet]]]
52level='DEBUG'
53qualname='cogplanet'
54handlers=['debug_out']
55
56[[[allinfo]]]
57level='INFO'
58handlers=['debug_out']
59
60[[[access]]]
61level='INFO'
62qualname='turbogears.access'
63handlers=['access_out']
64propagate=0
Note: See TracBrowser for help on using the browser.