Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / test.ini @ dc005588

History | View | Annotate | Download (775 Bytes)

1
#
2
# vigiboard - TurboGears 2 testing environment configuration
3
#
4
# The %(here)s variable will be replaced with the parent directory of this file
5
#
6
[DEFAULT]
7
debug = true
8
# Uncomment and replace with the address which should receive any error reports
9
# email_to = you@yourdomain.com
10
smtp_server = localhost
11
error_email_from = paste@localhost
12

    
13
[server:main]
14
use = egg:Paste#http
15
host = 0.0.0.0
16
port = 5000
17

    
18
[app:main]
19
sqlalchemy.url = sqlite:///:memory:
20
db_basename = vigilo_
21
vigiboard_items_per_page = 10
22
use = config:development.ini
23

    
24
[app:main_without_authn]
25
use = main
26
skip_authentication = True
27

    
28
[app:limited_maps]
29
use = main_without_authn
30
max_maps = 1
31

    
32
[app:disabled_maps]
33
use = main_without_authn
34
max_maps = 0
35

    
36
[app:unlimited_maps]
37
use = main_without_authn
38
max_maps = -2