-
Notifications
You must be signed in to change notification settings - Fork 74
/
app.json
37 lines (37 loc) · 1.1 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
{
"name": "extract.autodesk.io",
"description": "A Node.js server to extract Autodesk Forge Viewer bubbles",
"repository": "https://github.com/cyrillef/extract.autodesk.io.git",
"logo": "https://github.com/cyrillef/extract.autodesk.io/raw/master/www/images/adsk.24x24.png",
"keywords": [ "node", "forge", "autodesk" ],
"website": "https://developer.autodesk.com/",
"env": {
"FORGE_CLIENT_ID": {
"description": "Replace with your FORGE CLIENT ID KEY",
"value": "public"
},
"FORGE_CLIENT_SECRET": {
"description": "Replace with your FORGE CLIENT SECRET KEY",
"value": "secret"
},
"RECAPTCHA_SECRET": {
"description": "Replace with your Google RECAPTCHA SECRET KEY",
"value": "secret"
},
"MJ_APIKEY_PUBLIC": {
"description": "(Optional) Replace with your MailJET PUBLIC KEY",
"value": "",
"required": false
},
"MJ_APIKEY_SECRET": {
"description": "(Optional) Replace with your MailJET SECRET KEY",
"value": "",
"required": false
},
"MJ_ACCOUNT": {
"description": "(Optional) Replace with your mailjet account name",
"value": "",
"required": false
}
}
}