Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,21 @@ make reset-db
#### Development Setup

```bash
# Start the development server
# Start the full development server (requires devservices up)
pnpm run dev

# Start only the UI development server with hot reload
# Start only the UI development server with hot reload (no backend needed)
# Proxies API requests to production sentry.io
Comment thread
cursor[bot] marked this conversation as resolved.
pnpm run dev-ui
```

**Dev server URLs:**

- Full devserver (`devservices serve`): http://dev.getsentry.net:8000
- Frontend-only (`pnpm run dev-ui`): https://sentry.dev.getsentry.net:7999/

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.
Comment thread
sergical marked this conversation as resolved.
Outdated

#### Typechecking

Typechecking only works on the entire project. Individual files cannot be checked.
Expand Down
Loading