mirror of
https://github.com/gesellix/Bose-SoundTouch.git
synced 2026-08-19 00:56:16 +00:00
Dockerfile.stockholm clones github.com/krahl/soundcork-stockholm-app at build time and installs the required tools (prettier, patch, unzip, jq). No pre-built image is published upstream, so users must run `make build-stockholm-image` once before `make prepare-stockholm`. `make prepare-stockholm` runs the upstream entrypoint logic (extract zip, run prettier, apply patches) via a volume-mounted docker run, stopping before `exec java` so we only collect the processed stockholm/ output. The Go service then serves that directory directly with no patching required at runtime. Prerequisites: Docker with internet access, and stockholm_zip/stockholm.zip (Stockholm source zip placed manually — tracked directory, zip gitignored). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
107 lines
1.5 KiB
Plaintext
107 lines
1.5 KiB
Plaintext
# Build artifacts
|
|
build/
|
|
dist/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# CLI binaries (should be in build/ directory)
|
|
#soundtouch-cli
|
|
#example-mdns
|
|
#example-upnp
|
|
|
|
# Root-level binary executables (exclude built binaries in root)
|
|
/soundtouch-backup
|
|
/soundtouch-cli
|
|
/soundtouch-service
|
|
/soundtouch-web
|
|
/dummy-speaker
|
|
/example-mdns
|
|
/example-upnp
|
|
/example-unified
|
|
/mdns-scanner
|
|
/websocket-demo
|
|
/main
|
|
/screenshots
|
|
|
|
# Environment configuration
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
docker-compose.override.yml
|
|
|
|
# Test coverage reports
|
|
coverage.out
|
|
coverage*.out
|
|
coverage.html
|
|
*.prof
|
|
|
|
# Go workspace file
|
|
go.work
|
|
go.work.sum
|
|
|
|
# Dependency directories
|
|
vendor/
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Android MITM setup — downloaded/generated artefacts, not committed
|
|
scripts/android/bose.apk
|
|
scripts/android/frida-server
|
|
scripts/android/frida-server.xz
|
|
scripts/android/frida/
|
|
scripts/android/frida-venv/
|
|
scripts/android/captures/
|
|
scripts/android/mitm/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
.output.txt
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# dotenv environment variables file (but keep .env.example)
|
|
!.env.example
|
|
|
|
# Stockholm frontend — generated by `make prepare-stockholm`, not committed
|
|
stockholm/
|
|
|
|
# Stockholm source zip — large binary, place manually at stockholm_zip/stockholm.zip
|
|
stockholm_zip/*.zip
|