This is an Expo native app, using React Native Typescript created with create-expo-app
. It serves as a scheduling and backend management app for Popiko, a swim lesson business serving country clubs in the Bay Area.
-
Install dependencies
npm install
-
Start the app
npx expo start
In the output, you'll find options to open the app in a
- development build
- Android emulator
- iOS simulator
- Expo Go, a limited sandbox for trying out app development with Expo
You can start developing by editing the files inside the app directory. This project uses file-based routing.
-
Commit Messages: Use the following format:
feat
: A new featurefix
: A bug fixdocs
: Documentation changes
Note: Never commit
.env
files or sensitive information to the repository.
- Fork the repository.
- Create a feature branch:
git checkout -b feat/my-new-feature
. - Commit your changes.
- Push to the branch:
git push origin feat/my-new-feature
. - Open a pull request.
You can view the full documentation at this google-doc.