-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.js
39 lines (39 loc) · 982 Bytes
/
config.js
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
module.exports = {
title: 'AssetPicker',
storages: {
/* entermediaDB: {
adapter: 'entermediadb',
url: 'http://em9.entermediadb.org/openinstitute',
proxy: true
},
github: {
adapter: 'github',
username: 'netresearch',
repository: 'assetpicker'
} */
},
proxy: {
url: 'proxy.php?to={{url}}',
all: false
},
github: {
//tokenBla: 'j2332dwedcdj33dx3jm8389xdq'
},
pick: {
limit: 1,
types: ['file'],
extensions: []
},
language: 'auto',
debug: false,
adapters: {
github: 'adapter/github.js',
entermediadb: 'adapter/entermediadb.js',
googledrive: 'adapter/googledrive.js',
dummy: 'adapter/dummy.js'
},
// Way to deliver thumbnails in picked assets:
// 'url' for the url to the thumbnail
// 'data' for the image data uri
thumbnails: 'url'
};