mirror of
https://github.com/hhftechnology/vps-monitor.git
synced 2026-05-01 21:11:14 +00:00
43 lines
337 B
Text
43 lines
337 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
.vite/
|
|
|
|
# Test
|
|
coverage/
|
|
*.spec.ts
|
|
*.spec.tsx
|
|
*.test.ts
|
|
*.test.tsx
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
|
|
# Documentation
|
|
*.md
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# OS
|
|
.DS_Store
|
|
|
|
# Cache
|
|
.cache/
|
|
*.cache
|