Files
fusion/.gitignore
gsxdsm 5a5c955113 feat(mobile): add android run script and fix status-bar overlap
- Add scripts/mobile-run-android.sh + pnpm mobile:run:android (auto-detects
  Android SDK + JDK 21, writes local.properties, reconnects network ADB
  before deploy, supports remote backend via FUSION_SERVER_URL).
- Header.css: reserve env(safe-area-inset-top) so top app chrome no longer
  draws under the OS status bar on edge-to-edge native shells (Capacitor
  Android API 35+, iOS notch, PWA standalone). No-op on web/desktop.
- .gitignore: ignore generated packages/mobile/{ios,android} (stale paths
  pointed at packages/dashboard/).
2026-06-16 17:52:51 -07:00

101 lines
2.1 KiB
Plaintext

# Environment files (may contain secrets — FUSION_DAEMON_TOKEN, etc.)
.env
.env.local
.env.*.local
# Dependencies
node_modules/
# Build output
dist/
dist-electron/
*.tsbuildinfo
# Generated i18n catalogs synced into the dashboard tree from @fusion/i18n
# (authored source-of-truth lives in packages/i18n/locales/)
packages/dashboard/app/locales/
# Desktop packaging artifacts
*.dmg
*.dmg.blockmap
*.zip
*.zip.blockmap
*.AppImage
*.exe
*.nupkg
*.tgz
*.tar.gz
*.pkg
*.msi
*.deb
*.rpm
*.snap
*.blockmap
latest*.yml
builder-debug.yml
builder-effective-config.yaml
# Coverage reports
coverage/
# hai runtime (local board state — don't commit)
.fusion/
.hai/
.worktrees/
.factory/
kb.db/
# Stray worktrees accidentally created at the repo root by the executor
# or by manual `git worktree add` invocations. Without this, any such
# directory gets captured as a 160000 gitlink by `git add -A` during
# merger amend, producing broken submodule entries in HEAD (see FN-2152).
.tmp-fn-*
.tmp-kb-*
# Pi
.pi/
# VS Code Local History (editor auto-saved snapshots)
.history/
# Sibling clone of the Homebrew tap (runfusion/homebrew-fusion); not part of this repo
homebrew-tap/
# Ad-hoc task completion notes left by agents after a run; per-session scratch,
# never meant to be committed.
.DONE
improvements.md
docs/screenshots/
.claude/
# Local kb state and backups
.kb/
.fusion-backup/
.fusion-backup-*/
# FNXC:RepoHygiene 2026-06-14-13:34: `paseo.json` is local config generated by the external Paseo git-worktree manager.
# It can reappear whenever a developer provisions this repo with Paseo, so it must stay untracked repo-root noise.
paseo.json
# Stray runtime databases
fusion.db
fusion.db-wal
fusion.db-shm
# Capacitor mobile platform directories (generated by `cap add`)
packages/dashboard/ios/
packages/dashboard/android/
packages/mobile/ios/
packages/mobile/android/
# Per-shard vitest JSON timing reporter outputs (raw; merged into
# scripts/test-timings.json via `ci-test-shard.mjs --write-timings`).
.timings/
# Plugin hot-reload scratch artifacts
**/.index.reload-*.ts
# Dolt database files
.dolt/
*.db