https://github.com/ghost91-/dlang-aws-lambda-hello-world
A simple demo application for D on AWS Lambda.
https://github.com/ghost91-/dlang-aws-lambda-hello-world
aws-lambda dlang serverless
Last synced: about 2 months ago
JSON representation
A simple demo application for D on AWS Lambda.
- Host: GitHub
- URL: https://github.com/ghost91-/dlang-aws-lambda-hello-world
- Owner: ghost91-
- License: mit
- Created: 2019-04-19T12:47:13.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-08T22:57:43.000Z (almost 7 years ago)
- Last Synced: 2025-10-08T16:45:50.982Z (6 months ago)
- Topics: aws-lambda, dlang, serverless
- Language: D
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DLang AWS Lambda Hello World
A simple demo application for D on AWS Lambda.
## Building
Simply run
```bash
dub build
```
This creates a file `bootstrap.zip` which contains the compiled binary and can
be used to create a Function on AWS Lambda.
## Deploying to AWS Lambda using [serverless](https://serverless.com/)
1. Setup AWS credentials for serverless as described in the
[corrsponding section in the serverless documentation].
2. Build the application as described in the previous section.
3. Run
```bash
serverless deploy
```
[corrsponding section in the serverless documentation]: https://serverless.com/framework/docs/providers/aws/guide/credentials/