mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Context This PR adds support for git repository information in the analytics system by adding the necessary columns to the ClickHouse database and updating the UI to handle these properties appropriately. Implementation Updated .docker/scripts/clickhouse/001-create-tables.sql to include git properties in the schema for new database instances. Migrated package.json's to support new type schema. Modified apps/web/src/components/task-sharing/TaskDetails.tsx to display git properties when available (message if not). Added some claude-code typing. How to Test Run the migration by rebuilding docker and pnpm. If this still doesn't work try deleting .docker/data/clickhouse Create a new task in a git tracked repo on Roo Code extension while signed in-- verify this is logged correctly. |
||
|---|---|---|
| .docker | ||
| .github | ||
| .husky | ||
| .roo/rules | ||
| .vscode | ||
| apps | ||
| packages | ||
| scripts | ||
| .dockerignore | ||
| .env | ||
| .gitignore | ||
| .prettierrc.json | ||
| .roomodes | ||
| .tool-versions | ||
| docker-compose.yml | ||
| package.json | ||
| pnpm-lock.yaml | ||
| pnpm-workspace.yaml | ||
| README.md | ||
| turbo.json | ||
Roo Code Cloud Monorepo
Web
To start the web app you first need to start the postgres and clickhouse docker services:
pnpm db:up
This will automatically sync your database to the latest version of the schema. If you need to reset your database at any point, you can run:
pnpm db:reset
Then you can start the app in dev mode:
pnpm --filter @roo-code-cloud/web dev
The app will be available at localhost:3000.
Roomote
TBD