Fix #1025 - Make API IDs IRIs
[mediagoblin.git] / mediagoblin / tests / appconfig_static_plugin.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 # Celery shouldn't be set up by the application as it's setup via
11 # mediagoblin.init.celery.from_celery
12 celery_setup_elsewhere = true
13
14 [storage:publicstore]
15 base_dir = %(here)s/user_dev/media/public
16 base_url = /mgoblin_media/
17
18 [storage:queuestore]
19 base_dir = %(here)s/user_dev/media/queue
20
21 [celery]
22 CELERY_ALWAYS_EAGER = true
23 CELERY_RESULT_DBURI = "sqlite:///%(here)s/user_dev/celery.db"
24 BROKER_HOST = "sqlite:///%(here)s/user_dev/kombu.db"
25
26 [plugins]
27 [[mediagoblin.tests.testplugins.staticstuff]]