summaryrefslogtreecommitdiff
path: root/paste/deploy/paster_templates/paste_deploy/docs/devel_config.ini_tmpl
blob: 0c0ae35c8ee71b712d73efd7242c23a002831413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[filter-app:main]
# This puts the interactive debugger in place:
use = egg:Paste#evalerror
next = devel

[app:devel]
# This application is meant for interactive development
use = egg:${project}
debug = true
# You can add other configuration values:
greeting = Aloha!

[app:test]
# While this version of the configuration is for non-iteractive
# tests (unit tests)
use = devel

[server:main]
use = egg:Paste#http
# Change to 0.0.0.0 to make public:
host = 127.0.0.1
port = 8080