Files
nexus-timer/docs/development.md
2025-05-12 02:18:30 +02:00

624 B

Table of Contents

  1. Developer Setup
  2. Modify the app
  3. Test the PWA locally
  4. Commit & Push

Developer Setup

Clone the repository

git clone https://gitea.virtonline.eu/2HoursProject/nexus-timer.git
cd nexus-timer

Run the live update server locally

npm run dev

Modify the app

Make code changes...

Test the PWA locally

Open it in your browser: http://localhost:8080/

Commit & Push

Stage changes, commit and push

git add .
git commit -m 'My cool feature'
git push