Cannot Install Deployment Using Ionic Service

I am using ionic and want to add a deployment option to my code, but cannot install the ion deployment service. I'm trying to run

ionic add ionic-service-deploy 

but getting an error:

 > Failed to find the bower component "ionic-service-deploy". Are you sure it exists? (CLI v1.4.5) Your system information: Cordova CLI: 5.0.0 Ionic Version: 1.0.0 Ionic CLI Version: 1.4.5 Ionic App Lib Version: 0.0.22 OS: Windows 7 SP1 Node Version: v0.12.4 
+5
source share
3 answers

the problem was in the firewall, you just need to make a proxy server and it will solve the problem.

+3
source

You must do this first:

 cordova plugin add https://github.com/driftyco/ionic-plugins-deploy 

Source: http://docs.ionic.io/v1.0/docs/deploy-install

+2
source

Sometimes, if I’m on a computer without windows at work, I always have problems with bower and npm, all I run is the command below

 git config --global url."https://".insteadOf git:// 
+2
source

All Articles