This commit is contained in:
cpu
2025-05-09 15:15:25 +02:00
parent dfc0cc331a
commit c656af0009
3 changed files with 5 additions and 6 deletions

View File

@@ -200,13 +200,13 @@ git commit -m 'fixed visuals'
git push git push
``` ```
### Release the update ### Release the update
Pull the changes on your server Navigate to the app directory on your server
```bash ```bash
git pull cd /virt/nexus-timer
``` ```
Build the docker image and restart the service Pull the changes, build the docker image and restart the service
```bash ```bash
docker build -t virt-nexus-timer . && systemctl restart virt-nexus-timer.service git pull && docker build -t virt-nexus-timer . && systemctl restart virt-nexus-timer.service
``` ```
View real-time logs View real-time logs
```bash ```bash

View File

@@ -1,4 +1,4 @@
const CACHE_VERSION = 'nexus-timer-cache-v5'; const CACHE_VERSION = 'nexus-timer-cache-v6';
const APP_SHELL_URLS = [ const APP_SHELL_URLS = [
// '/', // Let NetworkFirst handle '/' // '/', // Let NetworkFirst handle '/'
'/manifest.json', '/manifest.json',

View File

@@ -1,4 +1,3 @@
// src/services/WakeLockService.js
let wakeLock = null; let wakeLock = null;
let wakeLockActive = false; let wakeLockActive = false;