Skip to content

Commit

Permalink
Fix links to Lambda greeter
Browse files Browse the repository at this point in the history
  • Loading branch information
gvdongen committed Dec 14, 2023
1 parent 1c346f4 commit 9c95bd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Restate handles durability and recovery (including recovering partial handler ex

# Examples

* [**Stateful serverless applications**](https://github.com/restatedev/examples/tree/main/typescript/lambda-greeter): Create one (or a few) functions with stateful business logic and run them on any FaaS.
* [**Stateful serverless applications**](https://github.com/restatedev/examples/tree/main/typescript/hello-world-lambda): Create one (or a few) functions with stateful business logic and run them on any FaaS.
* **Low-latency workflows**: Like payments processing, inventory keeping, user management, billing, … Including cases where you want high consistency, but hadn’t thought of workflows before, due to latency
* [Keeping track of a shopping cart and ticket inventory](https://github.com/restatedev/examples/tree/main/typescript/ticket-reservation)
* [Consistent payment processing via Stripe-style concurrent API](https://github.com/restatedev/examples/tree/main/typescript/payment-api)
Expand Down
4 changes: 2 additions & 2 deletions docs/services/deployment/lambda/lambda-typescript.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ curl -X POST http://<your-restate-runtime-endpoint>:9070/endpoints -H 'content-t

This tutorial shows how to deploy a greeter service written with the Restate Typescript SDK on AWS Lambda.

[Go to the GitHub repository of this tutorial](https://github.com/restatedev/examples/tree/main/typescript/lambda-greeter)
[Go to the GitHub repository of this tutorial](https://github.com/restatedev/examples/tree/main/typescript/hello-world-lambda)

### Prerequisites

Expand All @@ -60,7 +60,7 @@ Clone the GitHub repository for the latest release:
git clone --depth 1 [email protected]:restatedev/examples.git
```

You can find the example code in the `typescript/lambda-greeter` directory.
You can find the example code in the `typescript/hello-world-lambda` directory.
We are going to deploy the service defined in `src/app.ts` on AWS Lambda.
To do this, we need to create a zip file that includes the service code and the required dependencies to run it.

Expand Down

0 comments on commit 9c95bd8

Please sign in to comment.