🗃️ Removed the .claude/settings.local.json 🗃️

Dockerfile
.dockerignore
.env.scripts
.gitattributes
.gitea/workflows/docker.yaml
.gitignore
LICENSE.md
README.md
rootfs/usr/local/bin/entrypoint.sh
rootfs/usr/local/bin/pkmgr
This commit is contained in:
2026-05-12 20:07:20 -04:00
parent 7e1809cb56
commit d1a29b5115
10 changed files with 381 additions and 209 deletions
+10 -2
View File
@@ -1,9 +1,17 @@
# Files to ignore
.gitignore
# Tell docker to ignore .gitkeep
.gitkeep
.node_modules/**
# Tell docker to ignore .gitignore
.gitignore
# Tell docker to ignore node_modules/**
node_modules/**
# Tell docker to ignore .node_modules/**
.node_modules/**
# Tell docker to ignore **/.gitkeep
**/.gitkeep
# Tell docker to ignore **/.gitignore
**/.gitignore
# Tell docker to ignore **/node_modules/**
**/node_modules/**
# Tell docker to ignore **/.node_modules/**
**/.node_modules/**