This is the Frontend repository for the BugBusters2025 project.
It contains the client-side code and user interface for the application.
- Built with modern web technologies (HTML, CSS, JavaScript, React).
- Provides a responsive and interactive UI for users.
- Works with the backend API to fetch and display data.
Make sure you have the following installed:
- Node.js (v18+ recommended)
- npm (comes with Node.js)
- Git
Run these commands step by step to clone, install dependencies, start the development server, and manage Git:
# 1️⃣ Clone the repository
git clone https://github.com/BugBusters2025/Frontend.git
cd Frontend
# 2️⃣ (Optional) Initialize Git if not already
git init
# 3️⃣ Check current branch
git branch
# 4️⃣ Add remote repository if not added
git remote add origin https://github.com/BugBusters2025/Frontend.git
# 5️⃣ Install all dependencies
npm install
# 6️⃣ Start development server
npm run dev
# The app will run at designated local port
# 7️⃣ Stage all changes for commit
git add .
# 8️⃣ Commit changes
git commit -m "Initial commit / your message"
# 9️⃣ Push to remote repository
git push -u origin master
# Or if using 'main' branch:
# git branch -m master main
# git fetch origin
# git branch -u origin/main main
# git push -u origin main
# 🔹 Optional: Pull latest changes from remote
git pull origin master
# 🔹 Optional: View remote details
git remote -v
git remote show origin