KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
axum-aws-lambda
★ 89
Open GitHub ↗
Seamlessly use Axum on AWS Lambda
Download README (.md)
Explore Similar Repositories
configs
:
Config for monorepo with pnpm + eslint + prettier + husky + lintstaged + commitlint + changesets
sidekiq-fair_tenant
:
Sidekiq middleware to re-route “greedy” clients’ jobs to slower queues
furniture-remix
:
Furniture v2 Boilerplate on top of Remix Run
SVOLTE
:
Open Source Svelte Developer Toolkit
draccus
:
Configuration with Dataclasses+YAML+Argparse. Fork of Pyrallis
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
axum-aws-lambda
?
Download (.md)
# axum-aws-lambda [](https://github.com/lazear/axum-aws-lambda/actions/workflows/rust.yml)  This crate provides a `tower::Layer` that translates `hyper`/`axum` requests to the format used by the `aws-lambda-rust-runtime` crate. This allows users to switch between just running a Hyper server, and running under the Lambda runtime - this dramatically speeds up development! It also means that you can use off-the-shelf components from the Tower ecosystem! Check out `examples/main.rs`: running in debug mode runs a hyper server, and building for release mode compiles using the Lambda runtime. ### Testing out the Lambda runtime locally There is an example Dockerfile for locally spinning up a lambda runtime: ```terminal cargo build --release --example main docker build . -t lambda-test docker run -p 9000:8080 lambda-test ``` In `test-lambda-runtime/` there is a python script for testing and a Dockerfile for running it. In another shell, from the root of this repository: ```terminal cd test-lambda-runtime docker build . -t test_lambda_runtime docker run --network="host" test_lambda_runtime ```