Monorepo for Tangled
0

Configure Feed

Select the types of activity you want to include in your feed.

add dockerignore

Signed-off-by: Seongmin Lee <git@boltless.me>

Seongmin Lee (May 16, 2026, 11:57 PM +0900) df159fc3 fe59c209

+45
+45
.dockerignore
··· 1 + # VCS / editor 2 + .git 3 + .gitignore 4 + .gitattributes 5 + .DS_Store 6 + ._.DS_Store 7 + .direnv 8 + .envrc 9 + .env 10 + 11 + # Nix / build artifacts 12 + result 13 + result-* 14 + /nix/vm-data 15 + build 16 + blog/build 17 + sites/target 18 + sites/.wrangler 19 + .wrangler 20 + .bin 21 + out 22 + tmp 23 + patches 24 + *.qcow2 25 + 26 + # Generated assets — Dockerfiles rebuild or skip these 27 + appview/pages/static 28 + node_modules 29 + 30 + # Local DB / state 31 + *.db 32 + *.db-* 33 + *.rdb 34 + *.bleve 35 + **/*.bleve 36 + genjwks.out 37 + 38 + # Sensitive material — never bake into image layers 39 + contrib/certs/root.key 40 + 41 + # Compose / Dockerfiles themselves (not needed inside images) 42 + docker-compose.yml 43 + docker-compose.*.yml 44 + **/Dockerfile 45 + **/*.Dockerfile