Clone repository:
git clone <url_to_this_repository> your_project_directory
cd your_project_directory
Replace remotes:
git remote -v
git remote remove <remote_name> # typically origin
git remote add <your_new_repository_url>
Publish branch:
git push -u origin
Install dependencies
npm i
Copy environment variables
cp .env.example .env
Run application
npm run dev
Application is available under localhost:3000 (or whichever port is specified in vite.config.ts
)