This is the monorepo for the Routine App, containing backend, frontend, and mobile applications.
backend/
: Spring Boot backend applicationfrontend/
: React frontend applicationmobile/
: React Native mobile applicationdocs/
: Project documentationscripts
: Utilities
-
Backend Setup
- Navigate to the
backend
directory - Run
mvn install
to install dependencies - Run
mvn spring-boot:run
to start the backend server
- Navigate to the
-
Frontend Setup
- Navigate to the
frontend
directory - Run
npm install
to install dependencies - Run
npm start
to start the development server
- Navigate to the
-
Mobile Setup
- Navigate to the
mobile
directory - Run
npm install
to install dependencies - Run
npx react-native run-android
ornpx react-native run-ios
to start the mobile app
- Navigate to the
For more detailed instructions, refer to the README files in each component's directory.