|
a |
|
b/ForgeImporters/test.ini |
|
|
1 |
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
2 |
# or more contributor license agreements. See the NOTICE file
|
|
|
3 |
# distributed with this work for additional information
|
|
|
4 |
# regarding copyright ownership. The ASF licenses this file
|
|
|
5 |
# to you under the Apache License, Version 2.0 (the
|
|
|
6 |
# "License"); you may not use this file except in compliance
|
|
|
7 |
# with the License. You may obtain a copy of the License at
|
|
|
8 |
#
|
|
|
9 |
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
10 |
#
|
|
|
11 |
# Unless required by applicable law or agreed to in writing,
|
|
|
12 |
# software distributed under the License is distributed on an
|
|
|
13 |
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
14 |
# KIND, either express or implied. See the License for the
|
|
|
15 |
# specific language governing permissions and limitations
|
|
|
16 |
# under the License.
|
|
|
17 |
#
|
|
|
18 |
# allura - TurboGears 2 testing environment configuration
|
|
|
19 |
#
|
|
|
20 |
# The %(here)s variable will be replaced with the parent directory of this file
|
|
|
21 |
#
|
|
|
22 |
[DEFAULT]
|
|
|
23 |
debug = true
|
|
|
24 |
|
|
|
25 |
[server:main]
|
|
|
26 |
use = egg:Paste#http
|
|
|
27 |
host = 0.0.0.0
|
|
|
28 |
port = 5000
|
|
|
29 |
|
|
|
30 |
[app:main]
|
|
|
31 |
use = config:../Allura/test.ini
|
|
|
32 |
|
|
|
33 |
[app:main_without_authn]
|
|
|
34 |
use = config:../Allura/test.ini#main_without_authn
|
|
|
35 |
|
|
|
36 |
[app:main_with_amqp]
|
|
|
37 |
use = config:../Allura/test.ini#main_with_amqp
|
|
|
38 |
|
|
|
39 |
[loggers]
|
|
|
40 |
keys = root, allura, tool
|
|
|
41 |
|
|
|
42 |
[handlers]
|
|
|
43 |
keys = test
|
|
|
44 |
|
|
|
45 |
[formatters]
|
|
|
46 |
keys = generic
|
|
|
47 |
|
|
|
48 |
[logger_root]
|
|
|
49 |
level = INFO
|
|
|
50 |
handlers = test
|
|
|
51 |
|
|
|
52 |
[logger_allura]
|
|
|
53 |
level = DEBUG
|
|
|
54 |
handlers =
|
|
|
55 |
qualname = allura
|
|
|
56 |
|
|
|
57 |
[logger_tool]
|
|
|
58 |
level = DEBUG
|
|
|
59 |
handlers =
|
|
|
60 |
qualname = forgeshorturl
|
|
|
61 |
|
|
|
62 |
[handler_test]
|
|
|
63 |
class = FileHandler
|
|
|
64 |
args = ('test.log',)
|
|
|
65 |
level = NOTSET
|
|
|
66 |
formatter = generic
|
|
|
67 |
|
|
|
68 |
[formatter_generic]
|
|
|
69 |
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
|
|
|
70 |
datefmt = %H:%M:%S
|