Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 778 Bytes

File metadata and controls

51 lines (35 loc) · 778 Bytes

PinSphere frontend (web)

Prerequisites

Make sure you have the following installed:

Getting Started

1. Clone the repository

git clone https://github.com/saurabh254/pinsphere.git
cd pinsphere/webapp

2. Install dependencies

npm install

3. Start the development server

npm run dev

The app should now be running at http://localhost:5173/ (or another port if 5173 is occupied).

Build for Production

To create an optimized production build:

npm run build

The build output will be in the dist/ folder.

Lint & Format

To check for linting issues:

npm run lint

To format code:

npm run format