|
Revision 4324, 437 bytes
(checked in by k0s, 4 months ago)
|
* only populate list items if the arguments are present in app_conf
* example of setting traclegos variables in development.ini
* closes #3770
|
| Line | |
|---|
| 1 |
[DEFAULT] |
|---|
| 2 |
debug = true |
|---|
| 3 |
email_to = jhammel@openplans.org |
|---|
| 4 |
smtp_server = localhost |
|---|
| 5 |
error_email_from = paste@localhost |
|---|
| 6 |
traclegos.basedir = %(here)s |
|---|
| 7 |
|
|---|
| 8 |
[server:main] |
|---|
| 9 |
use = egg:Paste#http |
|---|
| 10 |
host = 0.0.0.0 |
|---|
| 11 |
port = 8081 |
|---|
| 12 |
|
|---|
| 13 |
[composite:main] |
|---|
| 14 |
use = egg:Paste#urlmap |
|---|
| 15 |
/ = traclegos |
|---|
| 16 |
|
|---|
| 17 |
set debug = false |
|---|
| 18 |
|
|---|
| 19 |
[app:traclegos] |
|---|
| 20 |
paste.app_factory = traclegos.wsgiapp:make_app |
|---|
| 21 |
traclegos.directory = %(here)s/projects |
|---|
| 22 |
#traclegos.conf = %(here)s/example/site_example.ini |
|---|