Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / test.ini @ 94f31908

History | View | Annotate | Download (775 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 a2d3e48e Aurelien BOMPARD
#sqlalchemy.url=postgres://vigiboard:tandreja@localhost/vigiboard_test
20 9c0dbb6a Thomas ANDREJAK
#sqlalchemy.url=mysql://root:tandreja@localhost:3306/vigiboard_test
21 12163111 Vincent QUEMENER
;sqlalchemy.url = sqlite:///:memory:
22
sqlalchemy.url = sqlite:////tmp/test-vigiboard.sqlite
23 5dbfa80d Francois POIROTTE
db_basename =
24
use_kerberos = False
25 49c8da1d Thomas ANDREJAK
use = config:development.ini
26
27
[app:main_without_authn]
28
use = main
29
skip_authentication = True