See React Native Getting Started
- Install Xcode or Android Studio
- Install Xcode command line tools
- Open Xcode, preferences, Locations panel, Choose most recent "Command Line Tools"
- node and npm
- https://www.npmjs.com/get-npmnpm
- With Homebrew, 'brew install node'
- watchman
- https://facebook.github.io/watchman/
- With Homebrew, 'brew install watchman'
- react-native
- npm install -g react-native-cli
In Linux Terminal:
- git clone https://github.com/RyanPencak/SmartRecipe.git
- cd SmartRecipe
In Linux Terminal:
- npm install
- react-native run-ios
- src
- app.js is the main file handling page navigation and layout
- Each component has its own js file, by convention these components are capitalized in the form "Recipes.js"
- Temporary data file data.js contains makeshift database for testing
- Style sheet is contained in styles.js
- server (To Be Developed)