Initial commit

This commit is contained in:
Developer
2026-02-06 21:44:04 -06:00
commit f85e93c7a6
151 changed files with 22916 additions and 0 deletions

68
.dockerignore Normal file
View File

@@ -0,0 +1,68 @@
# Dependencies
node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Build outputs
.next
out
dist
build
# Testing
coverage
.nyc_output
# Environment files (should be provided at runtime)
.env
.env.local
.env.development
.env.production
.env.test
# Git
.git
.gitignore
.github
# IDE
.vscode
.idea
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Misc
*.md
!README.md
.prettierrc
.eslintrc*
.editorconfig
# IMPORTANT: Allow Prisma migrations!
!prisma/migrations/**/*.sql
# Docker
Dockerfile
docker-compose*.yml
.dockerignore
# Logs
logs
*.log
# Duplicates at bottom - cleaned up
# node_modules <- already excluded at top
# .next <- already excluded at top
# .git <- already excluded at top
# .gitignore <- already excluded at top
# Dockerfile <- already excluded at top
# docker-compose.yml <- already excluded at top
# .env <- already excluded at top
npm-debug.log