familynido/.dockerignore
Pablo Fernández a308041d59 Initial commit
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.
2026-05-13 00:23:14 +02:00

38 lines
509 B
Text

# Keep the build context lean for docker builds at the repo root.
**/.git
**/.gitignore
**/.gitattributes
**/.github
**/README.md
**/*.md
!CLAUDE.md
# .NET build artifacts
**/bin
**/obj
artifacts/
coverage/
TestResults/
# Node / Angular
**/node_modules
**/dist
**/.angular
**/.cache
# Editor
**/.vs
**/.vscode
**/.idea
# Env files — never baked into images
.env
**/.env
**/.env.local
**/.env.*.local
# Design bundle (reference only, not needed at build time)
design/
# Compose artifacts
.docker-data/