Initial commit

This commit is contained in:
michaeltieso
2025-12-01 14:49:17 +00:00
commit 3480888eaa
92 changed files with 16631 additions and 0 deletions

62
.dockerignore Normal file
View File

@@ -0,0 +1,62 @@
# Node modules
node_modules/
npm-debug.log
yarn-error.log
# Build output
.next/
out/
dist/
# Environment files
.env
.env.local
.env.*.local
# Git
.git/
.gitignore
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Testing
coverage/
.nyc_output/
# Misc
*.log
.cache/
temp/
tmp/
# Database (don't include existing DB in image)
data/
*.db
*.db-shm
*.db-wal
# TypeScript
*.tsbuildinfo
next-env.d.ts
# Documentation
README.md
DEPLOYMENT.md
LICENSE
# Docker files
Dockerfile
docker-compose.yml
.dockerignore
# Setup scripts
setup.sh