50 lines
489 B
Plaintext
50 lines
489 B
Plaintext
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# CI/CD
|
|
.gitlab-ci.yml
|
|
|
|
# Environment files (never include in image)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
docs/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Test files (optional - include if you want tests in image)
|
|
*.test.ts
|
|
**/*.test.ts
|
|
|
|
# Build artifacts
|
|
*.tar
|
|
image.tar
|
|
|
|
# Deno cache (will be regenerated in container)
|
|
.deno/
|
|
|
|
# JetBrains
|
|
deep-lite.iml
|
|
|
|
# Claude Code plans
|
|
.claude/
|