fixed tests and defaults
[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 #Runs with an in-memory sqlite db for speed.
7 sql_engine = "sqlite://"
8 run_migrations = true
9
10 # tag parsing
11 tags_max_length = 50
12
13 # So we can start to test attachments:
14 allow_attachments = True
15
16 upload_limit = 500
17
18 [storage:publicstore]
19 base_dir = %(here)s/user_dev/media/public
20 base_url = /mgoblin_media/
21
22 [storage:queuestore]
23 base_dir = %(here)s/user_dev/media/queue
24
25 [celery]
26 CELERY_ALWAYS_EAGER = true
27 CELERY_RESULT_DBURI = "sqlite:///%(here)s/user_dev/celery.db"
28 BROKER_URL = "sqlite:///%(here)s/test_user_dev/kombu.db"
29
30 [plugins]
31 [[mediagoblin.plugins.api]]
32 [[mediagoblin.plugins.oauth]]
33 [[mediagoblin.plugins.httpapiauth]]
34 [[mediagoblin.plugins.piwigo]]
35 [[mediagoblin.plugins.basic_auth]]
36 [[mediagoblin.plugins.openid]]
37 [[mediagoblin.media_types.image]]
38 [[mediagoblin.media_types.pdf]]