mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-07 04:22:01 -05:00
87 lines
1.1 KiB
Plaintext
87 lines
1.1 KiB
Plaintext
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Version control
|
|
.git/
|
|
.gitignore
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node.js
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/.angular/
|
|
|
|
# .NET
|
|
backend/bin/
|
|
backend/obj/
|
|
backend/*/bin/
|
|
backend/*/obj/
|
|
backend/.vs/
|
|
|
|
# Build artifacts
|
|
artifacts/
|
|
dist/
|
|
|
|
# Test files
|
|
backend/**/*Tests/
|
|
backend/**/Tests/
|
|
|
|
# Development files
|
|
docker-compose*.yml
|
|
test/
|
|
|
|
# ================================
|
|
# Node and build output
|
|
# ================================
|
|
node_modules
|
|
dist
|
|
out-tsc
|
|
.angular
|
|
.cache
|
|
.tmp
|
|
|
|
# ================================
|
|
# Testing & Coverage
|
|
# ================================
|
|
coverage
|
|
jest
|
|
cypress
|
|
cypress/screenshots
|
|
cypress/videos
|
|
reports
|
|
playwright-report
|
|
.vite
|
|
.vitepress
|
|
|
|
# ================================
|
|
# Environment & log files
|
|
# ================================
|
|
*.env*
|
|
!*.env.production
|
|
*.log
|
|
*.tsbuildinfo
|
|
|
|
# ================================
|
|
# Docker & local orchestration
|
|
# ================================
|
|
Dockerfile
|
|
Dockerfile.*
|
|
.dockerignore
|
|
docker-compose.yml
|
|
docker-compose*.yml
|
|
|
|
# ================================
|
|
# Miscellaneous
|
|
# ================================
|
|
*.bak
|
|
*.old |