vigiboard / test.ini @ master
History | View | Annotate | Download (825 Bytes)
1 | 49c8da1d | Thomas ANDREJAK | # |
---|---|---|---|
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 | 5d6ce1f5 | Francois POIROTTE | sqlalchemy.url = sqlite:///:memory: |
20 | b42cc707 | Francois POIROTTE | vigiboard_items_per_page = 10 |
21 | 49c8da1d | Thomas ANDREJAK | use = config:development.ini |
22 | |||
23 | [app:main_without_authn] |
||
24 | use = main |
||
25 | skip_authentication = True |
||
26 | dc005588 | Francois POIROTTE | |
27 | [app:limited_maps] |
||
28 | use = main_without_authn |
||
29 | max_maps = 1 |
||
30 | |||
31 | [app:disabled_maps] |
||
32 | use = main_without_authn |
||
33 | max_maps = 0 |
||
34 | |||
35 | [app:unlimited_maps] |
||
36 | use = main_without_authn |
||
37 | max_maps = -2 |
||
38 | d5a41c9b | Vincent QUEMENER | |
39 | [app:pagination] |
||
40 | d3bc1ee3 | Francois POIROTTE | use = main_without_authn |
41 | d5a41c9b | Vincent QUEMENER | vigiboard_items_per_page = 1 |