Skip to content

Commit 4fb7ed7

Browse files
committed
Merge branch 'main' into add_api_key_env_vars
Signed-off-by: Geoff Wilson <[email protected]>
2 parents 742ca14 + a824557 commit 4fb7ed7

File tree

1,780 files changed

+194309
-90091
lines changed

Some content is hidden

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

1,780 files changed

+194309
-90091
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
33
"changelog": "./changelog-config.js",
44
"commit": false,
5-
"fixed": [],
5+
"fixed": [["roo-cline"]],
66
"linked": [],
77
"access": "restricted",
88
"baseBranch": "main",

.changeset/new-shoes-flow.md

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

.dockerignore

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# git
2+
.git
3+
4+
# build artifacts
5+
bin/
6+
dist/
7+
**/dist/
8+
out/
9+
**/out/
10+
src/webview-ui/
11+
12+
# dependencies
13+
node_modules/
14+
**/node_modules/
15+
16+
# testing
17+
coverage/
18+
**/.vscode-test/
19+
**/mock/
20+
21+
# devtools
22+
knip.json
23+
.husky/
24+
25+
# monorepo
26+
.turbo/
27+
**/.turbo/
28+
29+
# next.js
30+
**/.next/
31+
.vercel
32+
33+
# Ignore common development files
34+
node_modules
35+
.git
36+
.gitignore
37+
.dockerignore
38+
.env*
39+
.vscode
40+
.idea
41+
42+
# Ignore build artifacts
43+
dist
44+
build
45+
*.log
46+
*.tmp
47+
.cache
48+
coverage
49+
50+
# Ignore OS files
51+
.DS_Store
52+
Thumbs.db
53+
54+
# Ignore test files
55+
__tests__
56+
*.test.js
57+
*.spec.js
58+
*.test.ts
59+
*.spec.ts
60+
61+
# Ignore development config files
62+
.eslintrc*
63+
.prettierrc*
64+
65+
# Ignore most directories except what we need for the build
66+
apps/
67+
evals/
68+
webview-ui/node_modules
69+
src/node_modules
70+
71+
# Keep essential files for the build
72+
!README.md
73+
!CHANGELOG.md
74+
!package.json
75+
!pnpm-lock.yaml
76+
!pnpm-workspace.yaml
77+
!scripts/bootstrap.mjs
78+
!apps/web-evals/
79+
!src/
80+
!webview-ui/
81+
!packages/evals/.docker/entrypoints/runner.sh
82+
!packages/build/
83+
!packages/cloud/
84+
!packages/config-eslint/
85+
!packages/config-typescript/
86+
!packages/evals/
87+
!packages/ipc/
88+
!packages/telemetry/
89+
!packages/types/
90+
!locales/

.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

.gitattributes

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
11
demo.gif filter=lfs diff=lfs merge=lfs -text
22
assets/docs/demo.gif filter=lfs diff=lfs merge=lfs -text
33
src/assets/docs/demo.gif filter=lfs diff=lfs merge=lfs -text
4+
5+
# Test snapshot files - mark as linguist-generated to exclude from GitHub language statistics
6+
*.snap linguist-generated=true
7+
8+
# Non-English translation files - mark as linguist-generated to exclude from GitHub language statistics
9+
# Root locales directory (contains only non-English translations)
10+
locales/** linguist-generated=true
11+
12+
# Mark all locale directories as generated first
13+
src/i18n/locales/** linguist-generated=true
14+
webview-ui/src/i18n/locales/** linguist-generated=true
15+
16+
# Then explicitly mark English directories as NOT generated (override the above)
17+
src/i18n/locales/en/** linguist-generated=false
18+
webview-ui/src/i18n/locales/en/** linguist-generated=false
19+
20+
# This approach uses gitattributes' last-match-wins rule to exclude English while including all other locales

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# These owners will be the default owners for everything in the repo
2-
* @mrubens @cte
2+
* @mrubens @cte @jr

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,16 @@ body:
5353
validations:
5454
required: true
5555

56+
- type: textarea
57+
id: roo-code-tasks
58+
attributes:
59+
label: Roo Code Task Links (Optional)
60+
description: |
61+
If you have any publicly shared task links that demonstrate the issue, please paste them here.
62+
This helps maintainers understand the context.
63+
Example: https://app.roocode.com/share/task-id
64+
placeholder: Paste your Roo Code share links here, one per line
65+
5666
- type: textarea
5767
id: steps
5868
attributes:
@@ -85,4 +95,4 @@ body:
8595
attributes:
8696
label: 📄 Relevant Logs or Errors (Optional)
8797
description: Paste API logs, terminal output, or errors here. Use triple backticks (```) for code formatting.
88-
render: shell
98+
render: shell

0 commit comments

Comments
 (0)