Hue-Fit: An AI-Powered Men's Clothing Recommendation System. This project compose of mobile app for men's clothing recommendation and web app for maintenance. This System contains the following projects:
- app1 (web): A Next.js app located in
apps/web - app2 (mobile): A React Native Expo app located in
apps/mobile
To get started, clone the repository to your local machine:
git clone https://github.com/Quinchy/Hue-Fit.git
cd hue-fitOnce the repository is cloned, use the appropriate commands to run the application(s):
- To run both the web (Next.js) and mobile (React Native/Expo) applications:
yarn dev- To run only the web (Next.js) application:
yarn dev:web- To run only the mobile (React Native/Expo) application:
yarn dev:mobileIn adding packages for specific projects, use this commands to add packages on designated workspace:
- To add packages on the root:
yarn add packageName -W- To add packages on the web (Next.js):
yarn workspace web add packageName- To add packages on the mobile (React Native/Expo):
yarn workspace mobile add packageName