Skip to content

Commit

Permalink
Updated README to be more useful.
Browse files Browse the repository at this point in the history
Added Java install. Added Android SDK install with bashrc edit. Added updated NodeJS installed method. Added NPM update method. Added Cordova install.
  • Loading branch information
2E0PGS committed Feb 13, 2017
1 parent 5edb709 commit e7ffd30
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,31 @@ This project is licensed under the AGPLv3 free software license. See license for
##Contributing

You will need to a few tools in order to contribute to this project:
#### Java
Ubuntu:
```
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
```

#### Android SDK / Studio
Download and run the installer
https://developer.android.com/studio/index.html#downloads
For Ubuntu you will need to add below lines to bashrc after running the bash installer for Android Studio.
Ubuntu:
```
sudo gedit .bashrc
export ANDROID_HOME=~/Android/Sdk
export PATH=${PATH}:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
```

#### NPM
#### NodeJS and NPM

Ubuntu:
```
curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install -y nodejs
sudo apt-get install nodejs nodejs-legacy npm
sudo npm install npm@latest -g
```

Mac:
Expand All @@ -70,6 +88,11 @@ Don't have brew?
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
```

#### Cordova
```
sudo npm install -g cordova
```

#### Grunt
```
sudo npm -g install grunt-cli
Expand Down

0 comments on commit e7ffd30

Please sign in to comment.