forked from weseek/growi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1.17 KB
/
app.json
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
43
{
"name": "growi",
"description": "Team collaboration system with markdown",
"keywords": [
"wiki",
"communication"
],
"repository": "https://github.com/weseek/growi",
"success_url": "/",
"env": {
"NODE_ENV": {
"description": "DO NOT CHANGE - 'yarn' needs this to install devDependencies",
"value": "development"
},
"FILE_UPLOAD": {
"description": "Attached files storage. - mongodb | aws | local | none",
"value": "mongodb",
"required": false
},
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"PASSWORD_SEED": {
"description": "A password seed is used by password hash generator. ",
"generator": "secret"
},
"ADDITIONAL_PACKAGES": {
"description": "Space-separated list of npm package names to install.",
"value": "growi-plugin-lsx growi-plugin-pukiwiki-like-linker growi-plugin-attachment-refs react-images@1.0.0 react-motion",
"required": false
}
},
"addons": [
"mongolab",
{
"plan": "searchbox:starter",
"options": {
"es_version": "6"
}
}
]
}