-
Notifications
You must be signed in to change notification settings - Fork 161
Open
Description
Hello,
It is not an issue but listing my experience of using the sample app as test artifact whist setting up a pipeline to update offline buildpack behind a proxy. You may want to enhance your README with it.
- In an offline buildpack scenario, you have to bundle your dependencies with the app and then run cf push. You will have to do the following for it
- Remove .cfignore or its content
- Run 'npm install' in the directory where you have cloned the code. You will see following warnings
npm WARN cf-nodejs@1.0.0 No repository field.
npm WARN cf-nodejs@1.0.0 No license field.
and may want to update package.json with following
,
"repository": {
"type": "git",
"url": "cf-nodejs"
},
"license": "ISC",
- Specify the version of node.js, npm in your package.json e.g.
,
"engines": {
"node": "0.12.7",
"npm": "2.7.4"
}
Metadata
Metadata
Assignees
Labels
No labels