-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(api-status): add check for actor isolates
- Loading branch information
1 parent
cebd970
commit 3e224b1
Showing
23 changed files
with
969 additions
and
185 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Counter | ||
# Sandbox (Isolate) | ||
|
||
A bare bones example of RPC & events using a counter as an example. | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# System Test | ||
|
||
Actors for simple tests of E2E system functionality. | ||
|
||
## Prerequisites | ||
|
||
- [Rivet CLI](https://rivet.gg/docs/setup) | ||
|
||
## Deploying | ||
|
||
```sh | ||
rivet login | ||
rivet deploy | ||
``` | ||
|
||
## Testing | ||
|
||
```sh | ||
rivet deno --populate-env run -A ws_test.ts | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"imports": { | ||
"@core/asyncutil": "jsr:@core/asyncutil@^1.2.0", | ||
"@cross/env": "jsr:@cross/env@^1.0.2", | ||
"@rivet-gg/api": "npm:@rivet-gg/api@0.0.1-rc.5", | ||
"@std/assert": "jsr:@std/assert@^1.0.8", | ||
"@std/async": "jsr:@std/async@^1.0.9", | ||
"@std/cbor": "jsr:@std/cbor@^0.1.3", | ||
"@std/log": "jsr:@std/log@^0.224.11", | ||
"hono": "jsr:@hono/hono@^4.6.12", | ||
"@rivet-gg/actors-core": "../../sdks/actors/core/src/mod.ts", | ||
"@rivet-gg/actors": "../../sdks/actors/runtime/src/mod.ts", | ||
"on-change": "npm:on-change@^5.0.1", | ||
"zod": "npm:zod@^3.24.1" | ||
|
||
} | ||
} |
Oops, something went wrong.