mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-02-18 00:17:39 +01:00
- Add multi-stage Dockerfile for optimized builds - Add docker-compose.yml for easy deployment - Add .dockerignore to keep images lean - Ready for complete replacement of old Pulse repository
48 lines
382 B
Plaintext
48 lines
382 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
dev-docs/
|
|
|
|
# Binaries and build artifacts
|
|
pulse
|
|
backend
|
|
bin/
|
|
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
|
|
*~ |