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 deploysls invoke local -f hello- GitHub Actions: See
.github/workflows/null.ymlfor automated tests on push tomaster. - Drone CI:
.drone.ymlfor alternative CI pipeline. - Dagger:
dagger.cuefor advanced build/test automation.
module.exports.hello = async event => {
return { message: 'nullapp!', event };
};MIT