https://github.com/mozamimy/codepipeline-notify
A serverless application to notify whether it succeeded or not.
https://github.com/mozamimy/codepipeline-notify
aws aws-lambda codepipeline serverless
Last synced: 6 months ago
JSON representation
A serverless application to notify whether it succeeded or not.
- Host: GitHub
- URL: https://github.com/mozamimy/codepipeline-notify
- Owner: mozamimy
- License: mit
- Created: 2018-02-02T05:37:57.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-02T05:38:17.000Z (about 8 years ago)
- Last Synced: 2025-10-09T19:03:12.932Z (6 months ago)
- Topics: aws, aws-lambda, codepipeline, serverless
- Language: Go
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# codepipeline-notify
A serverless application to notify whether it succeeded or not.
## Development
You need to set following environment variable to run this application in your local machine. You need to install [aws-sam-local](https://github.com/awslabs/aws-sam-local) before execute following instruction.
```sh
$ GOOS=linux make main.zip
$ aws-sam-local local invoke CodePipelineNotify -e sample-event.json --template=deploy/template/staging.yml
```
Also you can build and upload to run it simply on AWS Lambda.
```sh
$ GOOS=linux go build -o main
$ zip main.zip main
```