Skip to content

Commit acf214e

Browse files
authored
Add Actix Web example (awslabs#182)
* Add Actix Web example * add a link in project readme file
1 parent 8f391ac commit acf214e

File tree

7 files changed

+1341
-0
lines changed

7 files changed

+1341
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ Lambda Web Adapter forwards this information to the web applicatioin in a Http H
116116
- [SpringBoot in Zip](examples/springboot-zip)
117117
- [Nginx](examples/nginx)
118118
- [PHP](examples/php)
119+
- [Rust Actix Web in Zip](examples/rust-actix-web-zip)
119120
- [Rust Axum in Zip](examples/rust-axum-zip)
120121
- [Golang Gin](examples/gin)
121122
- [Golang Gin in Zip](examples/gin-zip)
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
target
2+
samconfig.toml
3+
.aws-sam

examples/rust-actix-web-zip/README.md

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
# rust-actix-web-zip
2+
3+
This project contains source code and supporting files for a serverless Actix Web application that you can deploy with the SAM CLI. It includes the following files and folders:
4+
5+
- `Cargo.toml` - Project configuration file.
6+
- `src` - Code for the Actix Web application.
7+
- `template.yaml` - A template that defines the application's AWS resources.
8+
9+
The application uses several AWS resources, including Lambda functions and an API Gateway API. These resources are defined in the `template.yaml` file in this project. You can update the template to add AWS resources through the same deployment process that updates your application code.
10+
11+
If you prefer to use an integrated development environment (IDE) to build and test your application, you can use the AWS Toolkit.
12+
The AWS Toolkit is an open source plug-in for popular IDEs that uses the SAM CLI to build and deploy serverless applications on AWS. The AWS Toolkit also adds a simplified step-through debugging experience for Lambda function code. See the following links to get started.
13+
14+
* [CLion](https://docs.aws.amazon.com/toolkit-for-jetbrains/latest/userguide/welcome.html)
15+
* [GoLand](https://docs.aws.amazon.com/toolkit-for-jetbrains/latest/userguide/welcome.html)
16+
* [IntelliJ](https://docs.aws.amazon.com/toolkit-for-jetbrains/latest/userguide/welcome.html)
17+
* [WebStorm](https://docs.aws.amazon.com/toolkit-for-jetbrains/latest/userguide/welcome.html)
18+
* [Rider](https://docs.aws.amazon.com/toolkit-for-jetbrains/latest/userguide/welcome.html)
19+
* [PhpStorm](https://docs.aws.amazon.com/toolkit-for-jetbrains/latest/userguide/welcome.html)
20+
* [PyCharm](https://docs.aws.amazon.com/toolkit-for-jetbrains/latest/userguide/welcome.html)
21+
* [RubyMine](https://docs.aws.amazon.com/toolkit-for-jetbrains/latest/userguide/welcome.html)
22+
* [DataGrip](https://docs.aws.amazon.com/toolkit-for-jetbrains/latest/userguide/welcome.html)
23+
* [VS Code](https://docs.aws.amazon.com/toolkit-for-vscode/latest/userguide/welcome.html)
24+
* [Visual Studio](https://docs.aws.amazon.com/toolkit-for-visual-studio/latest/user-guide/welcome.html)
25+
26+
27+
## Requirments
28+
* This template was tested with Rust v1.66.0 and above.
29+
30+
## Deploy the sample application
31+
32+
To deploy the application, you need the folllowing tools:
33+
34+
* SAM CLI - [Install the SAM CLI](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-install.html)
35+
* Docker - [Install Docker community edition](https://hub.docker.com/search/?type=edition&offering=community)
36+
* [Rust](https://www.rust-lang.org/) version 1.56.0 or newer
37+
* [cargo-lambda](https://github.com/cargo-lambda/cargo-lambda#installation) for cross-compilation
38+
39+
To build and deploy your application for the first time, run the following in your shell:
40+
41+
```bash
42+
sam build
43+
sam deploy --guided
44+
```
45+
46+
The first command will build the source of your application. The second command will package and deploy your application to AWS.
47+
48+
You can find your API Gateway Endpoint URL in the output values displayed after deployment.
49+
50+
51+
## Add a resource to your application
52+
The application template uses AWS Serverless Application Model (AWS SAM) to define application resources. AWS SAM is an extension of AWS CloudFormation with a simpler syntax for configuring common serverless application resources such as functions, triggers, and APIs. For resources not included in [the SAM specification](https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md), you can use standard [AWS CloudFormation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html) resource types.
53+
54+
## Fetch, tail, and filter Lambda function logs
55+
56+
To simplify troubleshooting, SAM CLI has a command called `sam logs`. `sam logs` lets you fetch logs generated by your deployed Lambda function from the command line. In addition to printing the logs on the terminal, this command has several nifty features to help you quickly find the bug.
57+
58+
`NOTE`: This command works for all AWS Lambda functions; not just the ones you deploy using SAM.
59+
60+
```bash
61+
rust-actix-web-zip$ sam logs --stack-name rust-actix-web-zip --tail
62+
```
63+
64+
You can find more information and examples about filtering Lambda function logs in the [SAM CLI Documentation](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-logging.html).
65+
66+
## Tests
67+
68+
You can run and test the Actix Web application locally.
69+
70+
```bash
71+
cd rust_app
72+
cargo run
73+
```
74+
75+
76+
## Cleanup
77+
78+
To delete the sample application that you created, use the AWS CLI. Assuming you used your project name for the stack name, you can run the following:
79+
80+
```bash
81+
sam delete
82+
```
83+
84+
## Resources
85+
86+
See the [AWS SAM developer guide](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/what-is-sam.html) for an introduction to SAM specification, the SAM CLI, and serverless application concepts.
87+
88+
Next, you can use AWS Serverless Application Repository to deploy ready-to-use apps that go beyond hello world samples and learn how authors developed their applications: [AWS Serverless Application Repository main page](https://aws.amazon.com/serverless/serverlessrepo/).

0 commit comments

Comments
 (0)