This repository is a boilerplate for nestjs, react-native project which built with nx.
$ yarn install
$ yarn nx serve mobile-app
$ yarn nx serve rest-api
Check more nx commands in project.json
file placed in each directory.
apps
├── mobile-app: react-native project
├── mobile-app-e2e: react-native e2e project with detox
└── rest-api: nestjs project
libs
├── data-interface: interface shared between mobile-app and rest-api
├── domain: every (nestjs) domain module stands here
└── design-system: react-native design system for mobile-app
- Authentication
- OAuth(Sign In with Apple, Kakao)
- Sign Up (username, email)
- Keep user signed in
- Handle exprired access token
- Configuration
- Multiple Environment for Mobile App(development, staging, production)
- Multiple Environment for Nest Application(development, staging, production)
- Deployment
- CI with Github Action
- Over-the-air update with CodePush
- Dockerize
- Testing
- Unit Test
- E2E Test
- Test Coverage
- Monitoring and Analytics
- Sentry
- Firebase
Name | Android | iOS |
---|---|---|
Sentry properties | put sentry.properties at apps/mobile-app/android | put sentry.properties at apps/mobile-app/ios |
Google Services(Firebase) | put google-services.json at apps/mobile-app/android, apps/mobile-app/android/src/beta, apps/mobile-app/android/src/dev | put GoogleService-info.plist at apps/mobile-app/ios, apps/mobile-app/ios/MobileAppBeta, apps/mobile-app/ios/MobileAppDevelop |