Skip to content

Commit 7820b75

Browse files
ctejr
andauthored
Roo Code Cloud (#4069)
Co-authored-by: John Richmond <[email protected]>
1 parent 4cf240f commit 7820b75

File tree

174 files changed

+4544
-1232
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+4544
-1232
lines changed

.changeset/swift-carrots-doubt.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"roo-cline": patch
3+
---
4+
5+
Roo Code Cloud

.env.sample

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
POSTHOG_API_KEY=key-goes-here
2+
3+
# Roo Code Cloud / Local Development
4+
CLERK_BASE_URL=https://epic-chamois-85.clerk.accounts.dev
5+
ROO_CODE_API_URL=http://localhost:3000

.github/workflows/code-qa.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,3 @@ jobs:
133133
- name: Run integration tests
134134
working-directory: apps/vscode-e2e
135135
run: xvfb-run -a pnpm test:ci
136-
137-
qa:
138-
needs: [check-translations, knip, compile, platform-unit-test, integration-test]
139-
runs-on: ubuntu-latest
140-
steps:
141-
- name: NO-OP
142-
run: echo "All tests passed."

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "CodeQL Advanced"
1+
name: CodeQL Advanced
22

33
on:
44
push:

.github/workflows/marketplace-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Publish Extension
2+
23
on:
34
pull_request:
45
types: [closed]

.github/workflows/nightly-publish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Nightly Publish
22

33
on:
4-
# push:
5-
# branches: [main]
64
workflow_run:
75
workflows: ["Code QA Roo Code"]
86
types:

packages/cloud/eslint.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { config } from "@roo-code/config-eslint/base"
2+
3+
/** @type {import("eslint").Linter.Config} */
4+
export default [...config]

packages/cloud/package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "@roo-code/cloud",
3+
"description": "Roo Code Cloud VSCode integration.",
4+
"private": true,
5+
"type": "module",
6+
"exports": "./src/index.ts",
7+
"scripts": {
8+
"lint": "eslint src --ext=ts --max-warnings=0",
9+
"check-types": "tsc --noEmit",
10+
"test": "vitest --globals --run",
11+
"clean": "rimraf dist .turbo"
12+
},
13+
"dependencies": {
14+
"@roo-code/telemetry": "workspace:^",
15+
"@roo-code/types": "workspace:^",
16+
"axios": "^1.7.4"
17+
},
18+
"devDependencies": {
19+
"@roo-code/config-eslint": "workspace:^",
20+
"@roo-code/config-typescript": "workspace:^",
21+
"@types/node": "^22.15.20",
22+
"@types/vscode": "^1.84.0",
23+
"vitest": "^3.1.3"
24+
}
25+
}

0 commit comments

Comments
 (0)