Skip to content

Commit 8ed40af

Browse files
authored
docs(agents): Add dev server URLs and dev-ui proxy details (#112395)
## Summary - Document the correct URLs for local dev servers (`dev.getsentry.net:8000` and `sentry.dev.getsentry.net:7999`) - Clarify that `pnpm run dev-ui` proxies API requests to production sentry.io and requires no local backend - Improve command comments to distinguish full devserver vs frontend-only modes ## Test plan - [ ] Verify URLs are correct by running `pnpm run dev-ui` and accessing `https://sentry.dev.getsentry.net:7999/`
1 parent 880b596 commit 8ed40af

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

AGENTS.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,19 @@ make reset-db
130130
#### Development Setup
131131

132132
```bash
133-
# Start the development server
133+
# Start the full development server (requires devservices up)
134134
pnpm run dev
135135

136136
# Start only the UI development server with hot reload
137+
# Proxies API requests to production sentry.io
137138
pnpm run dev-ui
138139
```
139140

141+
**Dev server URLs:**
142+
143+
- Full devserver: http://dev.getsentry.net:8000
144+
- Frontend-only (`dev-ui`): https://sentry.dev.getsentry.net:7999/
145+
140146
#### Typechecking
141147

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

0 commit comments

Comments
 (0)