Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.

BugBusters2025/Frontend

Repository files navigation

Frontend - BugBusters2025

This is the Frontend repository for the BugBusters2025 project.
It contains the client-side code and user interface for the application.


🔹 Project Description

  • 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.

⚙️ Prerequisites

Make sure you have the following installed:

  • Node.js (v18+ recommended)
  • npm (comes with Node.js)
  • Git

🛠️ Quick Start & All-in-One Commands

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages