project.yaml is fresh and declares version 2.0.0-dev — a clean break from Python clide's v1.2.0 (which remains under legacy/). It carries module path, toolchain pins (go >=1.25, Flutter stable, Dart >=3.5), and the Gitea repository URL. Same schema as the Makefile will read via awk for sidecar version stamping. README.md and LICENSE land alongside. The README pitches the rebuild tersely and points at docs/initial-plan.md for the full story; the Python README is preserved under legacy/README.md. .gitignore is rewritten for the new toolchain. The previous file was wall-to-wall Python rules; now the root ignores Flutter/Dart/Go build output plus the usual OS/editor/secrets/.claude-local entries, and Python-specific rules scope to legacy/** so they don't fire on any stray caches at the repo root. .editorconfig sets tabs for Go, two-space for Dart and everything else, and the usual EOL + trailing-whitespace rules. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
83 lines
1.8 KiB
Plaintext
83 lines
1.8 KiB
Plaintext
# -- Flutter / Dart (app/) ----------------------------------------------
|
|
/app/.dart_tool/
|
|
/app/.packages
|
|
/app/.flutter-plugins
|
|
/app/.flutter-plugins-dependencies
|
|
/app/build/
|
|
/app/.idea/
|
|
/app/.vscode/
|
|
/app/*.iml
|
|
/app/ios/Pods/
|
|
/app/macos/Pods/
|
|
/app/windows/flutter/ephemeral/
|
|
/app/linux/flutter/ephemeral/
|
|
/app/macos/Flutter/ephemeral/
|
|
# pubspec.lock is committed (supply-chain policy).
|
|
|
|
# -- Go sidecar ---------------------------------------------------------
|
|
/sidecar/bin/
|
|
/sidecar/dist/
|
|
/sidecar/vendor/
|
|
/clide
|
|
/clide.exe
|
|
|
|
# -- Test, coverage, profile output ------------------------------------
|
|
*.test
|
|
*.out
|
|
*.prof
|
|
*.pprof
|
|
coverage.*
|
|
/tmp/
|
|
|
|
# -- Go module / workspace artefacts (we don't vendor or use workspaces)
|
|
/go.work
|
|
/go.work.sum
|
|
|
|
# -- pql per-repo state (clide dogfoods against itself; pql's index lands
|
|
# here when running queries locally). Mirror what `pql init` writes.
|
|
/.pql/
|
|
|
|
# -- SQLite index files (defensive; should never land at repo root) ----
|
|
*.sqlite
|
|
*.sqlite-journal
|
|
*.sqlite-wal
|
|
*.sqlite-shm
|
|
*.db
|
|
|
|
# -- Editor / IDE ------------------------------------------------------
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# -- OS cruft ----------------------------------------------------------
|
|
.DS_Store
|
|
._*
|
|
Thumbs.db
|
|
|
|
# -- Secrets -----------------------------------------------------------
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*-credentials.md
|
|
|
|
# -- Claude Code — user-specific settings only; project-level settings
|
|
# and skills are committed
|
|
.claude/settings.local.json
|
|
|
|
# -- Legacy Python clide (under legacy/, pre-dating the Flutter rebuild).
|
|
# Narrowly scoped so repo-root ignores stay focused on the current
|
|
# toolchain.
|
|
legacy/.venv/
|
|
legacy/.ruff_cache/
|
|
legacy/**/__pycache__/
|
|
legacy/**/*.py[cod]
|
|
legacy/**/*$py.class
|
|
legacy/**/.pytest_cache/
|
|
legacy/**/.mypy_cache/
|
|
legacy/**/.ruff_cache/
|
|
legacy/**/*.egg-info/
|
|
legacy/**/htmlcov/
|
|
legacy/**/.coverage
|
|
legacy/**/.coverage.*
|