Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anmonteiro/now-custom-runtime
ZEIT Now v2.0 builder for custom AWS Lambda runtimes
https://github.com/anmonteiro/now-custom-runtime
aws-lambda builder now now-builder serverless zeit
Last synced: 13 days ago
JSON representation
ZEIT Now v2.0 builder for custom AWS Lambda runtimes
- Host: GitHub
- URL: https://github.com/anmonteiro/now-custom-runtime
- Owner: anmonteiro
- License: mit
- Created: 2018-12-04T15:42:15.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-10T01:25:40.000Z (over 1 year ago)
- Last Synced: 2024-05-22T21:26:46.713Z (6 months ago)
- Topics: aws-lambda, builder, now, now-builder, serverless, zeit
- Language: TypeScript
- Homepage: https://now-custom-runtime-examples.now.sh
- Size: 1.7 MB
- Stars: 22
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# now-custom-runtime
This package provides a
[builder](https://zeit.co/docs/v2/deployments/builders/overview#when-to-use-builders)
for Zeit's [Now 2.0](https://zeit.co/blog/now-2) offering that enables running
custom runtimes in AWS Lambda.## Usage
Your `now.json` `"builds"` section should look something like this:
## Example
**Note**: don't forget to add `"version": 2` in your `now.json` file to use Now
2.0 explicitly.```json
{
"builds": [
{
"src": "my_executable",
"use": "now-custom-runtime"
}
]
}
```### Other Examples
Make sure to check the [`examples`](./examples) folder in this repo for examples.
## Copyright and License
Copyright © 2018 António Nuno Monteiro.
Distributed under the MIT License (see [LICENSE](./LICENSE)).