blob: a873f71fe9c7cb1b2fcae50a00bb47cb3258b5f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
[mediagoblin]
direct_remote_path = /test_static/
email_sender_address = "notice@mediagoblin.example.org"
email_debug_mode = true
#Runs with an in-memory sqlite db for speed.
sql_engine = "sqlite://"
run_migrations = true
# tag parsing
tags_max_length = 50
# So we can start to test attachments:
allow_attachments = True
upload_limit = 500
max_file_size = 2
[storage:publicstore]
base_dir = %(here)s/user_dev/media/public
base_url = /mgoblin_media/
[storage:queuestore]
base_dir = %(here)s/user_dev/media/queue
[celery]
CELERY_ALWAYS_EAGER = true
CELERY_RESULT_DBURI = "sqlite:///%(here)s/user_dev/celery.db"
BROKER_URL = "sqlite:///%(here)s/test_user_dev/kombu.db"
[plugins]
[[mediagoblin.plugins.api]]
[[mediagoblin.plugins.httpapiauth]]
[[mediagoblin.plugins.piwigo]]
[[mediagoblin.plugins.basic_auth]]
[[mediagoblin.plugins.openid]]
[[mediagoblin.media_types.image]]
## These ones enabled by specific applications
# [[mediagoblin.media_types.video]]
# [[mediagoblin.media_types.audio]]
# [[mediagoblin.media_types.pdf]]
|