Last active
August 29, 2015 14:14
-
-
Save MikeLarned/02acd8ff0074bfc15bce to your computer and use it in GitHub Desktop.
BrewNodeInstall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://blog.teamtreehouse.com/install-node-js-npm-mac | |
# 1 - Install Brew through the following command in your terminal. | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# After installation type 'brew info' in the command prompt to validate brew installed | |
# 2 - Install Node Package Manager (NPM) | |
brew install node | |
#After installation type 'node -v' to validation node installed | |
#3 - Install Cordova through Node | |
sudo npm install -g cordova | |
#4 - Install the Ionic Framework | |
sudo npm install -g ionic | |
# Clone the GitHub Repository here (this will create a folder called SimplotCare in your file system. Typically | |
# would create this file at ~/git. | |
cd ~ | |
mkdir git | |
cd git | |
git clone https://[email protected]/mlarned/simplotcare.git (creates simplotcare dir inside of git dir) | |
git pull | |
#5 Open the App folder in ~/git/simplotcare/app. Here you can add the XCode project used to build the app. | |
cd ~/git/simplotcare/app | |
ionic platform add ios | |
cd ~/git/simplotcare/app/platforms/ios/ | |
ls | |
# After ls you should see a Car.xcodeproj file. This is the project file for iOS. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment