63 lines
647 B
Plaintext
63 lines
647 B
Plaintext
# Dependencies
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
# package-lock.json - KEEP THIS for reproducible Docker builds
|
|
|
|
# Build output
|
|
build
|
|
dist
|
|
*.tsbuildinfo
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Documentation
|
|
README.md
|
|
QUICK_START.md
|
|
ARCHITECTURE.md
|
|
EXAMPLES.md
|
|
IMPLEMENTATION_NOTES.md
|
|
PROJECT_SUMMARY.md
|
|
*.md
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Scripts
|
|
setup.sh
|
|
validate.sh
|
|
*.sh
|
|
|
|
# Docker files (don't copy into context)
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Testing
|
|
test
|
|
tests
|
|
*.test.ts
|
|
*.spec.ts
|
|
coverage
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
|
|
# Misc
|
|
LICENSE
|