47 lines
503 B
Plaintext
47 lines
503 B
Plaintext
# Version control
|
|
.git
|
|
.gitignore
|
|
|
|
# Gitea metadata and local CI files
|
|
.gitea
|
|
|
|
# IDE/editor files
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Environment and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Dependencies and build output
|
|
node_modules
|
|
dist
|
|
build
|
|
coverage
|
|
|
|
# Logs and runtime artifacts
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Temporary/cache files
|
|
tmp
|
|
temp
|
|
.cache
|
|
|
|
# Local-only Docker files
|
|
docker-compose*.yml
|
|
docker-compose*.yaml
|