Initial commit: Aquarium Logbuch React/Vite App

- React 18 + Vite Frontend
- Node.js/Express Backend
- Vollstaendige Logbuch-Funktionalitaet fuer Aquarien
- Deploy-Script fuer aqualog CT 211 (192.168.0.246)
This commit is contained in:
2026-04-15 09:24:31 +02:00
commit a1f6a21828
11 changed files with 4614 additions and 0 deletions

14
backend/package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "aquarium-backend",
"version": "1.0.0",
"description": "Aquarium Logbuch API Backend",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"bcrypt": "^5.1.1",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2"
}
}