- Fork the repository
- Take a new branch with your name from the
mainbranch - Run the Vite React app
- There is a bug, debug it and commit a fix
- For this example, mail = hello@gmail.com, password = true is a valid credential
- Push the fix
- Create a pull request from your branch to the
mainbranch
# After forking, clone your fork (replace <your-username>):
git clone https://github.com/<your-username>/recruitment-task.git
cd recruitment-task
git checkout -b <your-name>
cd testapp-backend
npm install
npm run dev
cd testapp-frontend
npm install
npm run dev
# Debug, fix, commit, and push
git add .
git commit -m "fix: describe your fix"
git push origin <your-branch>
# Then create a pull request on GitHub-
Go to the repository page on GitHub.
-
Click the Fork button in the top-right corner.
-
Choose your GitHub account as the destination.
-
After forking, clone your fork to your local machine:
git clone https://github.com/<your-username>/recruitment-task.git cd recruitment-task
-
Continue with the rest of the instructions above.