Skip to content
This repository was archived by the owner on Oct 22, 2025. It is now read-only.

Commit 6343832

Browse files
committed
chore(core): update inspector url (#1247)
1 parent b30162c commit 6343832

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Public-facing projects:
4545

4646
- **RivetKit** (you are here): Lightweight TypeScript library for building Rivet Actors
4747
- **[Rivet Engine](https://github.com/rivet-dev/rivet)** : Engine that powers Rivet Actors at scale — completely optional
48-
- **[Rivet Studio](https://github.com/rivet-dev/rivet/tree/main/frontend/apps/studio)**: Like Postman, but for Rivet Actors
48+
- **[Rivet Studio](https://github.com/rivet-dev/rivet/tree/main/frontend/apps/studio)**: Like Chrome DevTools, but for Rivet Actors
4949
- **[Rivet Documentation](https://github.com/rivet-dev/rivet/tree/main/site/src/content/docs)**
5050

5151
## Get Started
@@ -218,16 +218,16 @@ Seamlessly integrate RivetKit with your favorite frameworks, languages, and tool
218218
- <img src=".github/media/integrations/tinybase.svg" height="16" alt="TinyBase" />&nbsp;&nbsp;[TinyBase](https://github.com/rivet-dev/rivetkit/issues/910) *(Help Wanted)*
219219
- <img src=".github/media/integrations/yjs.svg" height="16" alt="Yjs" />&nbsp;&nbsp;[Yjs](https://github.com/rivet-dev/rivetkit/issues/911) *(Help Wanted)*
220220

221-
## Local Development with the Studio
221+
## Local Development with the Rivet Inspector
222222

223-
Rivet Studio is like like Postman, but for all of your stateful serverless needs. [Visit the Studio](https://studio.rivet.dev)
223+
Rivet Inspector is like like Chrome DevTools, but for all of your stateful serverless needs. [Visit the Inspector](https://inspect.rivet.dev)
224224

225225
- **Live State Inspection**: View and edit your actor state in real-time as messages are sent and processed
226226
- **REPL**: Debug your actor in real-time - call actions, subscribe to events, and interact directly with your code
227227
- **Connection Inspection**: Monitor active connections with state and parameters for each client
228228
- **Hot Reload Code Changes**: See code changes instantly without restarting - modify and test on the fly
229229

230-
![Rivet Studio](.github/media/screenshots/studio/simple.png)
230+
![Rivet Inspector](.github/media/screenshots/studio/simple.png)
231231

232232
## Community & Support
233233

packages/rivetkit/src/inspector/config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ const defaultEnabled = () => {
2525
const defaultInspectorOrigins = [
2626
"http://localhost:43708",
2727
"http://localhost:43709",
28-
"https://studio.rivet.dev",
28+
"https://studio.rivet.gg",
29+
"https://inspect.rivet.dev",
2930
];
3031

3132
const defaultCors: CorsOptions = {

packages/rivetkit/src/inspector/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export function getInspectorUrl(runConfig: RunConfigInput | undefined) {
6464
return "disabled";
6565
}
6666

67-
const url = new URL("https://studio.rivet.dev");
67+
const url = new URL("https://inspect.rivet.dev");
6868

6969
url.searchParams.set("t", accessToken);
7070

0 commit comments

Comments
 (0)