git clone https://github.com/Achinta005/ML-Project.git
cd image-classifierIf you already have the project on your local machine and want to merge it with the remote repository:
cd your-local-project-directory
# Initialize git
git init
# Add remote repository
git remote add origin https://github.com/Achinta005/ML-Project.git
# Fetch the remote repository
git fetch origin main
# Merge remote changes with local files (handles conflicts)
git merge origin/main --allow-unrelated-histories
# If there are conflicts, resolve them manually, then:
git add .
git commit -m "Merge remote repository with local project"
# Optionally, set tracking branch
git branch -u origin/main maincd ml-service
pip install -r requirements.txtcd ../web
npm icd ml-service
python -m uvicorn app.main:app --reload --port 8000API available at: http://localhost:8000
cd web
npm run devWeb available at: http://localhost:3000