Moving test_user_dev->user_dev in plugin app configs & adding plugin static serving
[mediagoblin.git] / mediagoblin / tests / test_mgoblin_app.ini
1 [mediagoblin]
2 direct_remote_path = /test_static/
3 email_sender_address = "notice@mediagoblin.example.org"
4 email_debug_mode = true
5
6 # TODO: Switch to using an in-memory database
7 sql_engine = "sqlite:///%(here)s/user_dev/mediagoblin.db"
8
9 # tag parsing
10 tags_max_length = 50
11
12 # So we can start to test attachments:
13 allow_attachments = True
14
15 media_types = mediagoblin.media_types.image, mediagoblin.media_types.pdf
16
17 [storage:publicstore]
18 base_dir = %(here)s/user_dev/media/public
19 base_url = /mgoblin_media/
20
21 [storage:queuestore]
22 base_dir = %(here)s/user_dev/media/queue
23
24 [celery]
25 CELERY_ALWAYS_EAGER = true
26 CELERY_RESULT_DBURI = "sqlite:///%(here)s/user_dev/celery.db"
27 BROKER_HOST = "sqlite:///%(here)s/user_dev/kombu.db"
28
29 [plugins]
30 [[mediagoblin.plugins.api]]
31 [[mediagoblin.plugins.oauth]]
32 [[mediagoblin.plugins.httpapiauth]]
33 [[mediagoblin.plugins.piwigo]]