Added BASE_URL env to app.json

This commit is contained in:
David Baldwynn 2017-03-30 09:48:37 -07:00 committed by GitHub
parent 1a73b4c1c7
commit 05acf4819c

View file

@ -6,13 +6,17 @@
"keywords": ["node", "express", "static", "mean"], "keywords": ["node", "express", "static", "mean"],
"env": { "env": {
"SUBDOMAINS_DISABLED": { "SUBDOMAINS_DISABLED": {
"description": "Disable subdomains for user forms", "description": "Disable subdomains for user forms",
"value": "TRUE" "value": "TRUE"
}, },
"NODE_ENV": { "NODE_ENV": {
"description": "Specify whether to run development or production version of the app", "description": "Specify whether to run development or production version of the app",
"value": "production", "value": "production",
"required": true "required": true
},
"BASE_URL": {
"description": "Set this to your heroku app's URL",
"required": true
} }
}, },
"scripts": { "scripts": {