Description
Add AWS Lambda as a deployment target. Hono has first-class AWS Lambda adapter support, making this a natural addition to Nerva's deployment options.
Why
AWS Lambda is the most widely used serverless platform in enterprise environments. Many organizations have AWS-centric infrastructure — supporting Lambda deployment lets them adopt Nerva without changing their cloud provider.
Acceptance Criteria
Notes
Consider also supporting AWS Lambda with Lambda Web Adapter for container-based Lambda deployments, which simplifies the setup.
Description
Add AWS Lambda as a deployment target. Hono has first-class AWS Lambda adapter support, making this a natural addition to Nerva's deployment options.
Why
AWS Lambda is the most widely used serverless platform in enterprise environments. Many organizations have AWS-centric infrastructure — supporting Lambda deployment lets them adopt Nerva without changing their cloud provider.
Acceptance Criteria
```typescript
import { handle } from '@hono/aws-lambda';
import app from './index.js';
export const handler = handle(app);
```
Notes
Consider also supporting AWS Lambda with Lambda Web Adapter for container-based Lambda deployments, which simplifies the setup.