Add connection management scripts to package.json

- Introduced new scripts: check-connections and cleanup-connections for managing database connections.
- These scripts enhance the backend's ability to monitor and maintain connection health.
This commit is contained in:
Torsten Schulz (local)
2026-01-23 13:35:33 +01:00
parent 1c442eb195
commit 6471158847
3 changed files with 143 additions and 0 deletions

View File

@@ -10,6 +10,8 @@
"start-daemon": "node daemonServer.js",
"sync-db": "node sync-database.js",
"sync-tables": "node sync-tables-only.js",
"check-connections": "node check-connections.js",
"cleanup-connections": "node cleanup-connections.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],