Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Fix links to new Tour of Restate in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gvdongen authored Aug 22, 2023
2 parents 8597b26 + 8954ad3 commit c7674c1
Show file tree
Hide file tree
Showing 25 changed files with 28 additions and 28 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ This tutorial takes your through key Restate features by developing an end-to-en

❓ Learn more about Restate from the [Restate documentation](https://docs.restate.dev).

Have a look at the [Tour of Restate tutorial](https://docs.restate.dev/tour/typescript-handler) in the documentation to build and run the application in this repository.
Have a look at the [Tour of Restate tutorial](https://docs.restate.dev/tour) in the documentation to build and run the application in this repository.

## Releasing

In order to create a new release, push a tag of the form `vX.Y.Z`.
Then [create a release via GitHub](https://github.com/restatedev/tour-of-restate-typescript-handler/releases).
Then [create a release via GitHub](https://github.com/restatedev/tour-of-restate-typescript/releases).

Releases of this repository are referred to by the [documentation](https://github.com/restatedev/documentation).
Please update the version tag referenced on the [Tour of Restate](https://github.com/restatedev/documentation/blob/main/docs/tour/typescript-handler.mdx) documentation page.
Please update the version tag referenced on the [Tour of Restate](https://github.com/restatedev/documentation/blob/main/docs/tour.mdx) documentation page.

### Upgrading Typescript SDK
Upgrade the version tag in `package.json` and rerun the different parts of the tutorial:
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@restatedev/tour-of-restate-typescript-handler",
"name": "@restatedev/tour-of-restate-typescript",
"version": "0.0.1",
"description": "Tour of Restate's key features with the Typescript handler API",
"type": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion src/app/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/app/checkout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/app/ticket_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/app/user_session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/aux/email_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

export class EmailClient {
Expand Down
2 changes: 1 addition & 1 deletion src/aux/payment_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

let i = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/part1/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part1/checkout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part1/ticket_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part1/user_session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part2/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part2/checkout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part2/ticket_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part2/user_session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part3/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part3/checkout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part3/ticket_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part3/user_session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part4/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part4/checkout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part4/ticket_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down
2 changes: 1 addition & 1 deletion src/part4/user_session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* You can find a copy of the license in the file LICENSE
* in the root directory of this repository or package or at
* https://github.com/restatedev/tour-of-restate-typescript-handler
* https://github.com/restatedev/tour-of-restate-typescript
*/

import * as restate from "@restatedev/restate-sdk";
Expand Down

0 comments on commit c7674c1

Please sign in to comment.