Skip to content

Commit 9a8fdcf

Browse files
Merge pull request #102 from stealthrocket/dispatch.run
migrate from stealthrocket.cloud to dispatch.run
2 parents b268e72 + 42f07df commit 9a8fdcf

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Python package to develop applications with the Dispatch platform.
1515
[fastapi]: https://fastapi.tiangolo.com/tutorial/first-steps/
1616
[ngrok]: https://ngrok.com/
1717
[pypi]: https://pypi.org/project/dispatch-py/
18-
[signup]: https://docs.stealthrocket.cloud/stateful-functions/getting-started
18+
[signup]: https://docs.dispatch.run/stateful-functions/getting-started
1919

2020
- [What is Dispatch?](#what-is-dispatch)
2121
- [Installation](#installation)

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
This is the API reference for the Python SDK of Dispatch.
44

5-
- Tutorials and guides: [docs.stealthrocket.cloud][docs].
5+
- Tutorials and guides: [docs.dispatch.run][docs].
66
- Source: [stealthrocket/dispatch-py][github].
77

88

9-
[docs]: https://docs.stealthrocket.cloud
9+
[docs]: https://docs.dispatch.run
1010
[github]: https://github.com/stealthrocket/dispatch-py

examples/auto_retry/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This example demonstrates how stateful functions automatically retry on failure.
44
55
Make sure to follow the setup instructions at
6-
https://docs.stealthrocket.cloud/dispatch/stateful-functions/getting-started/
6+
https://docs.dispatch.run/dispatch/stateful-functions/getting-started/
77
88
Run with:
99

examples/getting_started/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This is the most basic example to get started with Dispatch Functions.
44
55
Follow along with the tutorial at:
6-
https://docs.stealthrocket.cloud/dispatch/stateful-functions/getting-started/
6+
https://docs.dispatch.run/dispatch/stateful-functions/getting-started/
77
88
The program starts a FastAPI server and initializes the Dispatch SDK that
99
registers one function. This function makes a dummy but durable HTTP request.
@@ -15,7 +15,7 @@
1515
## Get a Dispatch API key
1616
1717
Sign up for Dispatch and generate a new API key:
18-
https://docs.stealthrocket.cloud/stateful-functions/getting-started#creating-an-api-key
18+
https://docs.dispatch.run/stateful-functions/getting-started#creating-an-api-key
1919
2020
## Create a local tunnel
2121
@@ -41,7 +41,7 @@
4141
-d '{}' \
4242
-H "Authorization: Bearer $DISPATCH_API_KEY" \
4343
-H "Content-Type: application/json" \
44-
https://api.stealthrocket.cloud/dispatch.v1.SigningKeyService/CreateSigningKey | \
44+
https://api.dispatch.run/dispatch.v1.SigningKeyService/CreateSigningKey | \
4545
jq -r .key.asymmetricKey.publicKey`"
4646
4747
2. Start the server:

examples/github_stats/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This example demonstrates how to use async functions orchestrated by Dispatch.
44
55
Make sure to follow the setup instructions at
6-
https://docs.stealthrocket.cloud/dispatch/stateful-functions/getting-started/
6+
https://docs.dispatch.run/dispatch/stateful-functions/getting-started/
77
88
Run with:
99

src/dispatch/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
logger = logging.getLogger(__name__)
1616

1717

18-
DEFAULT_API_URL = "https://api.stealthrocket.cloud"
18+
DEFAULT_API_URL = "https://api.dispatch.run"
1919

2020

2121
class Client:

0 commit comments

Comments
 (0)