A minimal AWS Lambda application managed with the Serverless Framework. Includes multiple CI/CD configurations and a simple handler function. [DONE BY github MCP server docker version]
- AWS Lambda: Simple handler returning a message
- Serverless Framework: Easy deployment to AWS
- CI/CD: GitHub Actions, Drone CI, and Dagger for build/test automation
- Funding: Support via PayPal
- Node.js (v12 or later)
- Serverless Framework (
npm install -g serverless
) - AWS credentials configured
sls deploy
sls invoke local -f hello
- GitHub Actions: See
.github/workflows/null.yml
for automated tests on push tomaster
. - Drone CI:
.drone.yml
for alternative CI pipeline. - Dagger:
dagger.cue
for advanced build/test automation.
module.exports.hello = async event => {
return { message: 'nullapp!', event };
};
MIT