I want to build my Angular project on the bluemix deploy pipeline. I have tried to create a new build order with a shell script but it just fails. What is the best practice for building the project on Bluemix?
Ex. "ng build --base-href /.../"
I want to build my Angular project on the bluemix deploy pipeline. I have tried to create a new build order with a shell script but it just fails. What is the best practice for building the project on Bluemix?
Ex. "ng build --base-href /.../"
From the project directory, Add
manifest.yml
file. Check for the buildpack below.ng build
command from the project directory.cf login
cf push <app-name>
Your app should be deployed in bluemix. Hope this helps.