Welcome to the Axios App Repository! This repository is used for project documentation and assignment submissions for the Axios learning module.
Axios-app/
│
├── docs/ # Project notes, reference material, and guides
├── assignments/ # Folder where you'll submit all your assignments
└── README.md # You're reading it!
⚠️ Note: Theassignmentsfolder will be updated regularly with new assignment templates or starter files. Always check this repository before starting your next task.
Follow these steps exactly to ensure your submission is accepted.
- Go to https://github.com/sandesh282/Axios-app
- Click the Fork button in the top-right corner.
- This creates a copy under your own GitHub account.
Open your terminal and run:
git clone https://github.com/<your-username>/Axios-app.gitThen navigate inside the folder:
cd Axios-appEach assignment should be submitted in a separate branch.
git checkout -b assignment-1-<your-name>For example:
git checkout -b assignment-1-ravi-
Open the
assignmentsfolder. -
Create a new folder named after you:
assignments/<your-name>/ -
Place all your files (code, screenshots, or reports) inside that folder.
Example:
assignments/
└── ravi/
├── Tut.zip
Once done, commit your work:
git add .
git commit -m "Added Assignment 1 by Ravi"
git push origin assignment-1-ravi- Go to your forked repo on GitHub.
- Click Compare & Pull Request.
- Set the base repository to
sandesh282/Axios-app. - Add a meaningful title like: “Assignment 1 Submission – Ravi”
- Add any short notes in the description (optional).
- Click Create Pull Request.
- Keep your folder names clean (
assignments/<your-name>/) - Don’t edit or delete others’ files
- One Pull Request per assignment
- Make sure your code runs without errors
- Always pull the latest changes before starting a new assignment
Before every new assignment:
git pull origin mainto ensure you have the latest version of the repo.
If you face issues during submission: Reach out to members!
Happy Coding & Learning! 🚀