RTSDA-Website/.gitignore
Benjamin Slingo 4b4c9d1bc7 Add documentation files to gitignore
- Ignore all .md files except README.md
- Prevent future commits of temporary documentation files
2025-08-30 09:02:49 -04:00

80 lines
905 B
Plaintext

# Rust build artifacts
target/
Cargo.lock
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
package-lock.json
# Astro build output
dist/
.astro/
# Generated CSS from Tailwind builds
public/css/theme-light.css
public/css/theme-dark.css
# Compiled binaries and libraries
*.node
*.so
*.dll
*.dylib
*.a
# Archive files
*.tar.gz
*.zip
# iOS/Android build artifacts
bindings/
*.xcframework/
RTSDA/
# Build outputs
build/
*.log
index.cjs
index.d.ts
# Environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS generated files
.DS_Store
Thumbs.db
ehthumbs.db
# Temporary files
*.tmp
*.temp
# Cargo build metadata
.cargo/
# Coverage reports
coverage/
*.lcov
# AI Assistant metadata
.serena/
# Documentation files (keep only README.md)
CHANGES.md
CLAUDE.md
DEPLOYMENT.md
NEXT-STEPS.md
*.md
!README.md