Skip to content

Commit f3e0c00

Browse files
committed
docs(agents): Add dev server URLs and dev-ui proxy details
Document the correct URLs for accessing local dev servers and clarify that dev-ui proxies to production sentry.io with no backend needed.
1 parent 5a752d6 commit f3e0c00

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

AGENTS.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,21 @@ make reset-db
119119
#### Development Setup
120120

121121
```bash
122-
# Start the development server
122+
# Start the full development server (requires devservices up)
123123
pnpm run dev
124124

125-
# Start only the UI development server with hot reload
125+
# Start only the UI development server with hot reload (no backend needed)
126+
# Proxies API requests to production sentry.io
126127
pnpm run dev-ui
127128
```
128129

130+
**Dev server URLs:**
131+
132+
- Full devserver (`devservices serve`): http://dev.getsentry.net:8000
133+
- Frontend-only (`pnpm run dev-ui`): https://sentry.dev.getsentry.net:7999/
134+
135+
The `dev-ui` server proxies `/api/*` to production `sentry.io`, so you must be logged into sentry.io in the same browser. No local backend or devservices needed.
136+
129137
#### Typechecking
130138

131139
Typechecking only works on the entire project. Individual files cannot be checked.

0 commit comments

Comments
 (0)