forked from OWASP/NodeGoat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
29 lines (29 loc) · 894 Bytes
/
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
{
"name": "OWASP NodeGoat",
"description": "Educational tool to learn about OWASP Top 10 for node.js apps.",
"keywords": [
"security",
"node.js",
"OWASP Top 10"
],
"website": "https://www.owasp.org/index.php/Projects/OWASP_Node_js_Goat_Project",
"logo": "https://www.owasp.org/skins/owasplogo.png",
"success_url": "/login",
"scripts": {
"postdeploy": "node artifacts/db-reset.js"
},
"env": {
"MONGODB_URI": {
"description": "Connection string for MongoDB database to use. Must be publicly accessible.",
"value": ""
},
"NODE_ENV": {
"description": "NODE_ENV for build and runtime. Must be in lowercase for Heroku build process.",
"value": "production"
},
"NPM_CONFIG_ONLY": {
"description": "Controls devDependency install: \"production\" = skip, \"all\" = install",
"value": "production"
}
}
}