- Install Node.js.
brew install node
or installer - Install Yarn
brew install yarn
orbrew install yarn --without-node
. - Install Xcode.
- Install Xcode command line tools
xcode-select --install
. - Install Android SDK.
- Install Fastlane
sudo gem install fastlane -NV
orbrew cask install fastlane
. - Install Cocoapods
brew install cocoapods
orsudo gem install cocoapods
. - Install RNDebugger
brew update && brew cask install react-native-debugger
. - Clone Github Repository.
- Change project's name with
yarn starter
. - Install dependencies
yarn
oryarn install
. - Install pods
cd ios && pod install
.
- Start the preparation script with
yarn starter
. This is very important to rename all references in project and it will reset the git log too. - Terminal will ask you for project name, type the project name and everything will be renamed to adapt the template to the new project
- You can now use the project in another repository and start developing with all pre-installed dependencies, components and tools
- Don't forget to update all the dependencies before starting to avoid breaking changes!
- A new journey begins, good luck!