From charlesreid1

(Created page with "=Installing= Getting up and running with Angular project on Digital Ocean droplet: Following these instructions for getting environment set up: https://docs.angularjs.org/misc/...")
 
No edit summary
Line 3: Line 3:
Getting up and running with Angular project on Digital Ocean droplet:
Getting up and running with Angular project on Digital Ocean droplet:


Following these instructions for getting environment set up: https://docs.angularjs.org/misc/contribute
Following these instructions for getting environment set up: https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-an-ubuntu-14-04-server


First, update repo to get a more up-to-date version of nodejs:
First, update repo to get a more up-to-date version of nodejs:
Line 15: Line 15:
</pre>
</pre>


Next, install Java 7 or latest:


Next, install java:
<pre>
sudo apt-get install java7-jdk java7-sdk
</pre>
 
Following these instructions for putting everything else into place for Angular: https://docs.angularjs.org/misc/contribute
 
Install grunt:
 
<pre>
sudo npm install -g grunt-cli
</pre>
 
Install bower:
 
<pre>
sudo npm install -g bower
</pre>

Revision as of 02:15, 30 March 2015

Installing

Getting up and running with Angular project on Digital Ocean droplet:

Following these instructions for getting environment set up: https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-an-ubuntu-14-04-server

First, update repo to get a more up-to-date version of nodejs:

curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install nodejs npm

Next, install Java 7 or latest:

sudo apt-get install java7-jdk java7-sdk

Following these instructions for putting everything else into place for Angular: https://docs.angularjs.org/misc/contribute

Install grunt:

sudo npm install -g grunt-cli

Install bower:

sudo npm install -g bower