Skip to content

Commit 1e22925

Browse files
committed
More progress
1 parent 962f70d commit 1e22925

34 files changed

+842
-1168
lines changed

.roo/rules/rules.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
1+
# Repository Rules
2+
3+
1. This repository is a monorepo that uses pnpm workspaces. Prefer `pnpm` over `npm` when executing commands.
4+
2. Tests should be written with vitest instead of jest.
5+
16
# Code Quality Rules
27

38
1. Test Coverage:
4-
59
- Before attempting completion, always make sure that any code changes have test coverage
610
- Ensure all tests pass before submitting changes
7-
811
2. Lint Rules:
9-
1012
- Never disable any lint rules without explicit user approval
11-
1213
3. Styling Guidelines:
1314
- Use Tailwind CSS classes instead of inline style objects for new markup
1415
- VSCode CSS variables must be added to webview-ui/src/index.css before using them in Tailwind classes
1516
- Example: `<div className="text-md text-vscode-descriptionForeground mb-2" />` instead of style objects
16-
17-
# Adding a New Setting
18-
19-
To add a new setting that persists its state, follow the steps in docs/settings.md

apps/cloud-agents/.env.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
DATABASE_URL=postgresql://postgres:password@localhost:5433/cloud_agents
2+
REDIS_URL=redis://localhost:6380
3+
GITHUB_WEBHOOK_SECRET=your-webhook-secret-here
4+
OPENROUTER_API_KEY=your-openrouter-api-key

apps/cloud-agents/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22

33
docker/postgres-data
44
docker/redis-data
5+
6+
!.env.example

apps/cloud-agents/ARCHITECTURE.md

Lines changed: 0 additions & 299 deletions
This file was deleted.

0 commit comments

Comments
 (0)