28 lines
624 B
Markdown
28 lines
624 B
Markdown
# Table of Contents
|
|
1. [Developer Setup](#developer-setup)
|
|
2. [Modify the app](#modify-the-app)
|
|
3. [Test the PWA locally](#test-the-pwa-locally)
|
|
4. [Commit & Push](#commit--push)
|
|
|
|
## Developer Setup
|
|
Clone the repository
|
|
```bash
|
|
git clone https://gitea.virtonline.eu/2HoursProject/nexus-timer.git
|
|
cd nexus-timer
|
|
```
|
|
Run the live update server locally
|
|
```bash
|
|
npm run dev
|
|
```
|
|
### Modify the app
|
|
Make code changes...
|
|
### Test the PWA locally
|
|
Open it in your browser:
|
|
[http://localhost:8080/](http://localhost:8080/)
|
|
### Commit & Push
|
|
Stage changes, commit and push
|
|
```bash
|
|
git add .
|
|
git commit -m 'My cool feature'
|
|
git push
|
|
``` |