2023-06-12 07:24:03 +01:00
|
|
|
---
|
2024-06-16 18:15:03 +01:00
|
|
|
tags:
|
|
|
|
- AWS
|
|
|
|
- aws-lambda
|
2023-06-12 07:24:03 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
# Lambda directory structure
|
|
|
|
|
|
|
|
I am using the following structure for my lambdas:
|
|
|
|
|
|
|
|
```
|
|
|
|
lambda-name/
|
|
|
|
events/
|
|
|
|
function-name/
|
|
|
|
src/
|
|
|
|
index.js
|
|
|
|
tests/
|
|
|
|
local-env.json
|
|
|
|
production-env.json
|
|
|
|
package.json
|
|
|
|
template.yaml
|
|
|
|
README.md
|
|
|
|
```
|