feat(backend): Hinzufügen der Datenbank-Synchronisation zum Deployment-Skript

- Implementierung eines neuen Skripts zur Datenbank-Synchronisation im deploy-backend.sh.
- Hinzufügen eines npm-Skripts "sync-db" in package.json zur Ausführung der Synchronisation.
- Verbesserung des Deployment-Prozesses durch automatisierte Datenbankaktualisierungen.
This commit is contained in:
Torsten Schulz (local)
2025-08-29 10:56:38 +02:00
parent ca60821b27
commit 2d27c655a5
3 changed files with 43 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
"scripts": {
"start": "node server.js",
"dev": "NODE_ENV=development node server.js",
"sync-db": "node sync-database.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],