- Install brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
- Install cocoapods via brew
brew install cocoapods
- Install xcode command line tools
- Run initial setup
# From the root project directory... make initial-setup
WIP
# From the root project directory...
make initial-setup
Specifically how to run after initially setting up. If you close the project or reboot your computer for whatever reason and want to start working on the project again use these commands:
make run-ios
To run the linter just run:
make lint
or make lint-fix
The linter will catch and fix any syntax/styling errors for you
Run these set of commands if using ZSH
compaudit | xargs chmod g-w
echo `zstyle ':completion:*:*:make:*' tag-order 'targets'` >> ~/.zshrc
echo `autoload -U compinit && compinit` >> ~/.zshrc
If you're not using zsh, reference this on instructions how to switch