FamilyNido — a self-hosted PWA for a single household: shared calendar, chores, meals, school agenda, health records and a family wall. One instance per family, deployable with `docker compose` on any home server. Stack: .NET 10 (ASP.NET Core Minimal APIs) + EF Core 10 + PostgreSQL 16 on the backend, Angular 21 (standalone, signals, zoneless) + Tailwind CSS v4 on the frontend, SignalR for realtime, optional OIDC alongside local credentials, integration via a versioned `/api/v1/**` public API. See README.md for the module overview and how to deploy.
26 lines
584 B
JSON
26 lines
584 B
JSON
{
|
|
"name": "FamilyNido",
|
|
"short_name": "FamilyNido",
|
|
"description": "Self-hosted PWA for the family — calendar, chores, meals, school and more.",
|
|
"start_url": "/",
|
|
"scope": "/",
|
|
"display": "standalone",
|
|
"orientation": "portrait",
|
|
"theme_color": "#C96442",
|
|
"background_color": "#F5EDE2",
|
|
"lang": "es-ES",
|
|
"icons": [
|
|
{
|
|
"src": "icon.svg",
|
|
"sizes": "any",
|
|
"type": "image/svg+xml",
|
|
"purpose": "any maskable"
|
|
},
|
|
{
|
|
"src": "favicon.ico",
|
|
"sizes": "32x32",
|
|
"type": "image/x-icon",
|
|
"purpose": "any"
|
|
}
|
|
]
|
|
}
|