Use six.text_type instead of unicode().
[mediagoblin.git] / mediagoblin / tests / test_paste.ini
1 [DEFAULT]
2 debug = true
3
4 [composite:main]
5 use = egg:Paste#urlmap
6 / = mediagoblin
7 /mgoblin_media/ = publicstore_serve
8 /test_static/ = mediagoblin_static
9 /theme_static/ = theme_static
10 /plugin_static/ = plugin_static
11
12 [app:mediagoblin]
13 use = egg:mediagoblin#app
14 config = %(here)s/mediagoblin.ini
15
16 [app:publicstore_serve]
17 use = egg:Paste#static
18 document_root = %(here)s/user_dev/media/public
19
20 [app:mediagoblin_static]
21 use = egg:Paste#static
22 document_root = %(here)s/mediagoblin/static/
23
24 [app:theme_static]
25 use = egg:Paste#static
26 document_root = %(here)s/user_dev/theme_static/
27 cache_max_age = 86400
28
29 [app:plugin_static]
30 use = egg:Paste#static
31 document_root = %(here)s/user_dev/plugin_static/
32 cache_max_age = 86400
33
34 [celery]
35 CELERY_ALWAYS_EAGER = true
36
37 [server:main]
38 use = egg:Paste#http
39 host = 127.0.0.1
40 port = 6543