IBM deleted my GIT repos and pipelines... this guys are crazy...
Now my deployments are brokens. And now my pipelines dosn't exists. I don't remember how I created the custom instrucctions 2 years ago.
How I can create custom vars in the deployment custom script in my NodeJS app?
I use pipeline deployment for create 3 envirorments, and I need custom vars in each envirorment APP.
This not works:
#!/bin/bash
cf push "${CF_APP}" --no-start
cf set-env "${CF_APP}" APP_ENVIRONMENT "QA"
cf restage "${CF_APP}"
I need to add something for install dependencies like npm install? I need to add something about that I want use NodeJS and the version? I need to put this in some order?
In custom server is simple, after install nodejs you do npm install && node app, end. In Bluemix errors everywhere.