🦈🏠🐜 Initial Commit 🐜🦈🏠
Some checks failed
release-tag / release-image (push) Failing after 27m5s

This commit is contained in:
casjay
2025-09-16 23:50:20 -04:00
commit 591e8cb540
43 changed files with 2598 additions and 0 deletions

17
.dockerignore Normal file
View File

@@ -0,0 +1,17 @@
# Files to ignore
# 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/**
# 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/**