File: devel_config.ini_tmpl

package info (click to toggle)
pastedeploy 1.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 256 kB
  • ctags: 177
  • sloc: python: 872; makefile: 15
file content (22 lines) | stat: -rw-r--r-- 477 bytes parent folder | download | duplicates (10)
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