mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Signed-off-by: Tyler Longwell <tlongwell@squareup.com> Co-authored-by: npub17jjz49l9jjmhhk7cac63j8yt9z555n9cw8vk7v5jz4vzw4ppld5qgj57cc <f4a42a97e594b77bdbd8ee35191c8b28a94a4cb871d96f32921558275421fb68@sprout-oss.stage.blox.sqprod.co>
55 lines
1.0 KiB
Plaintext
55 lines
1.0 KiB
Plaintext
# Build outputs
|
|
target/
|
|
**/target/
|
|
desktop/src-tauri/target/
|
|
|
|
# Native non-relay UI builds (not part of the public image)
|
|
desktop/
|
|
mobile/
|
|
|
|
# Node artifacts (built inside the image; host outputs would invalidate cache)
|
|
node_modules/
|
|
**/node_modules/
|
|
web/dist/
|
|
|
|
# VCS, IDE, scratch
|
|
.git/
|
|
.github/
|
|
.gitignore
|
|
.gitattributes
|
|
.vscode/
|
|
.idea/
|
|
.scratch/
|
|
|
|
# Local environment / secrets — never want these in the build context
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
secrets/
|
|
|
|
# OS junk
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# CI artifacts and tooling that the image doesn't need
|
|
.cache/
|
|
coverage/
|
|
dist/
|
|
playwright-report/
|
|
test-results/
|
|
bin/
|
|
sidecars/
|
|
|
|
# Docs the image doesn't ship. examples/ stays — examples/countdown-bot is
|
|
# a Cargo workspace member, so cargo-chef needs its manifest. Markdown files
|
|
# inside crates (Cargo.toml `readme = ...`) likewise need to be present to
|
|
# avoid manifest warnings; the savings from excluding them are negligible.
|
|
docs/
|
|
|
|
# Old Dockerfile noise (this Dockerfile is THE source of truth now)
|
|
docker-compose.yml
|
|
docker-compose.*.yml
|
|
prometheus.yml
|