You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -119,13 +119,21 @@ make reset-db
119
119
#### Development Setup
120
120
121
121
```bash
122
-
# Start the development server
122
+
# Start the full development server (requires devservices up)
123
123
pnpm run dev
124
124
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
126
127
pnpm run dev-ui
127
128
```
128
129
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
+
129
137
#### Typechecking
130
138
131
139
Typechecking only works on the entire project. Individual files cannot be checked.
0 commit comments