Initial commit: Cat Sitting Planner with PWA, SQLite, and Webhook Notifications

This commit is contained in:
2026-01-12 20:48:23 +01:00
commit 3121ef223d
52 changed files with 13722 additions and 0 deletions

21
public/manifest.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "Cat Sitting Planner",
"short_name": "CatSit",
"description": "Coordinate cat sitting with your group.",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#000000",
"icons": [
{
"src": "/file.svg",
"sizes": "192x192",
"type": "image/svg+xml"
},
{
"src": "/file.svg",
"sizes": "512x512",
"type": "image/svg+xml"
}
]
}