mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-04-28 03:20:11 +00:00
58 lines
534 B
Text
58 lines
534 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
dev-docs/
|
|
!docs/
|
|
!docs/**
|
|
!SECURITY.md
|
|
!TERMS.md
|
|
|
|
# Binaries and build artifacts
|
|
pulse
|
|
backend
|
|
/pulse-agent
|
|
/pulse-server
|
|
bin/
|
|
dist/
|
|
frontend/
|
|
frontend-modern/public/download/
|
|
frontend-modern/dist/
|
|
scripts/macos/dist/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
vendor/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Test files
|
|
testing-tools/
|
|
*_test.go
|
|
*.test
|
|
|
|
# Development files
|
|
.env
|
|
.env.local
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*~
|