This is the foundational monorepo for the MixMatch project, containing the backend and mobile applications.
- Node.js (v14 or higher)
- npm
-
Install dependencies:
npm install
-
Run the Backend:
Navigate to the
backenddirectory and run the dev server.cd backend npm run dev -
Run the Mobile App:
Navigate to the
mobiledirectory and start the Expo dev server.cd mobile npm start
- Linting: Run
npm run lintfrom the root to check for code style issues. - Type Checking: Run
npx tsc --noEmitfrom the root to check for TypeScript errors across all projects.