58 lines
751 B
Plaintext
58 lines
751 B
Plaintext
# Version control and IDE
|
|
**/.git
|
|
**/.gitignore
|
|
**/.vs
|
|
**/.vscode
|
|
**/.idea
|
|
**/.project
|
|
**/.settings
|
|
|
|
# Build outputs and cache
|
|
**/bin
|
|
**/obj
|
|
**/TestResults
|
|
**/node_modules
|
|
**/npm-debug.log
|
|
|
|
# Docker and deployment files
|
|
**/.dockerignore
|
|
**/docker-compose*
|
|
**/Dockerfile*
|
|
**/deploy-*.sh
|
|
**/docker/
|
|
|
|
# Environment and secrets
|
|
**/.env*
|
|
**/secrets.dev.yaml
|
|
**/values.dev.yaml
|
|
|
|
# Documentation and project files
|
|
README.md
|
|
ROADMAP.md
|
|
LICENSE
|
|
CLAUDE.md
|
|
**/.claude
|
|
|
|
# Test projects (not needed in production)
|
|
**/*.Tests
|
|
|
|
# Runtime generated files
|
|
**/logs
|
|
**/uploads
|
|
**/data
|
|
**/*.db
|
|
**/*.log
|
|
|
|
# User-specific files
|
|
**/*.*proj.user
|
|
**/*.dbmdl
|
|
**/*.jfm
|
|
**/.toolstarget
|
|
|
|
# Azure and Kubernetes
|
|
**/azds.yaml
|
|
**/charts
|
|
|
|
# Development artifacts
|
|
**/publish
|
|
**/backups |