npx expo install
open expo go and scan the QR
Add new packages through expo compatibility layer
npx expo add package@version
The default development branch is dev, so that we should start by checkout.
git checkout dev
git pull
git checkout -b <branch_name>
-
Feature
Any commits for a new module or use case should be done on a
feature
branch. For example:feat/<area>
feat/themes
feat/item_list
feat/hunter_log
-
Bug Fix
Any necessary fixes should be done on a
fix
branch. For example:fix/<area>
fix/themes
fix/item_list
fix/hunter_log
- Each commit message should start with its branch name. For example:
feat/<area>: <message>
feat/themes: added dark theme styles
fix/<area>: <message>
fix/themes: missing divider color for dark themes
- Let's keep commit messages CLEAR and MEANINGFUL.