Committing present MediaGoblin translations before pushing extracted messages
[mediagoblin.git] / mediagoblin / tests / test_paste.ini
CommitLineData
c5678c1a
CAW
1[DEFAULT]
2debug = true
3
4[composite:main]
5use = egg:Paste#urlmap
6/ = mediagoblin
7/mgoblin_media/ = publicstore_serve
91b89bde 8/test_static/ = mediagoblin_static
491029bc
CAW
9/theme_static/ = theme_static
10/plugin_static/ = plugin_static
c5678c1a
CAW
11
12[app:mediagoblin]
13use = egg:mediagoblin#app
5c2ece74 14config = %(here)s/mediagoblin.ini
c5678c1a
CAW
15
16[app:publicstore_serve]
17use = egg:Paste#static
491029bc 18document_root = %(here)s/user_dev/media/public
c5678c1a
CAW
19
20[app:mediagoblin_static]
21use = egg:Paste#static
22document_root = %(here)s/mediagoblin/static/
23
491029bc
CAW
24[app:theme_static]
25use = egg:Paste#static
26document_root = %(here)s/user_dev/theme_static/
27cache_max_age = 86400
28
29[app:plugin_static]
30use = egg:Paste#static
31document_root = %(here)s/user_dev/plugin_static/
32cache_max_age = 86400
33
c5678c1a 34[celery]
e9f87f72 35CELERY_ALWAYS_EAGER = true
c5678c1a
CAW
36
37[server:main]
38use = egg:Paste#http
39host = 127.0.0.1
40port = 6543