50 lines
388 B
Plaintext
50 lines
388 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Data directories
|
|
data/
|
|
/data
|
|
|
|
# Build artifacts
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
zwift-monitor
|
|
|
|
# Test files
|
|
*_test.go
|
|
testdata/
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
|
|
# Config files (will be mounted)
|
|
config.yaml
|
|
.env
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# State files
|
|
*.json
|