4 Commits
Author SHA1 Message Date
arnef 8ef7b9ce8c Flatten repo: move client/ contents to repo root
CI / Type-Check (push) Successful in 16s
CI / Build Android APK (push) Successful in 5m20s
The project is no longer a monorepo/workspace - there is only a single
app package. Remove the redundant client/ nesting: all source, the
Capacitor Android project, config files and package.json/tsconfig now
live directly at the repo root.

- Merge client/package.json into root package.json (drop the
  workspaces field and the now-unnecessary bun --cwd client wrappers).
- Merge client/bun.lock (the actual dependency lockfile) into the
  root, replacing the stale workspace-only root lockfile.
- Move src/, public/, android/, index.html, vite.config.ts,
  capacitor.config.ts, tsconfig.{app,node}.json to the repo root.
- Update Dockerfile.android to build from the repo root instead of
  cd'ing into client/.
- Update .github/workflows/ci.yml type-check step to run bun run build
  directly instead of bun --cwd client run build.
- Update README.md and .github/copilot-instructions.md to drop
  references to the client/ subdirectory.
- Drop the stale server/downloads/ entry from .gitignore (leftover
  from an old server-based architecture that no longer exists).
2026-08-13 21:52:32 +02:00
arnef e3e725cf7b CI: clean up Docker/Podman build artifacts after APK build
CI / Type-Check (push) Successful in 31s
CI / Build Android APK (push) Successful in 5m19s
build-apk.sh always builds with --no-cache, which piles up images,
build cache and containers on the runner over time. Add a cleanup
step (if: always(), runs even on failure) that prunes everything via
'docker system prune -af --volumes' or the Podman equivalent, so
self-hosted runners don't fill up their disk.
2026-08-12 21:32:49 +02:00
arnef 53377237bc Add CI workflow: type-check and build Android APK
CI / Type-Check (push) Successful in 14s
CI / Build Android APK (push) Successful in 5m34s
Runs bun --cwd client run build (tsc -b) on push/PR, then builds the
APK via build-apk.sh and uploads it as a workflow artifact. Also
compatible with Gitea Actions, which reads .github/workflows/ in
addition to .gitea/workflows/.
2026-08-12 12:40:06 +02:00
arnef 5ba89051b1 Add Copilot CLI repository instructions 2026-08-12 11:54:39 +02:00