Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigigraph / test.ini @ 4a4e1e3a

History | View | Annotate | Download (729 Bytes)

1 0931fc44 Thomas BURGUIERE
#
2
# vigigraph - 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
use = config:development.ini
20 4964dc96 Vincent QUEMENER
lang=fr
21
22 9552d2ce Aurelien BOMPARD
db_basename = vigilo_
23 4964dc96 Vincent QUEMENER
24 3b9a145c Francois POIROTTE
sqlalchemy.url = sqlite:///:memory:
25 4964dc96 Vincent QUEMENER
sqlalchemy.echo = false
26
sqlalchemy.echo_pool = false
27
sqlalchemy.pool_recycle = 3600
28 0931fc44 Thomas BURGUIERE
29
[app:main_without_authn]
30
use = main
31
skip_authentication = True
32
33
# Add additional test specific configuration options as necessary.