https://github.com/amplify-education/flappy_detector
https://github.com/amplify-education/flappy_detector
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/amplify-education/flappy_detector
- Owner: amplify-education
- Created: 2021-01-28T19:20:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-27T05:26:38.000Z (8 months ago)
- Last Synced: 2025-04-30T10:23:57.987Z (5 months ago)
- Language: Python
- Homepage:
- Size: 159 KB
- Stars: 0
- Watchers: 12
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Flappy Detector
Lambda project for detecting flappy resources in AWS.## Getting Started
### Prerequisites
Flappy Detector requires the following to be installed:
```text
python >= 3.8
tox >= 2.9.1
docker
serverless
npm
nodejs
```### Running Tests
`tox` will automatically execute linters as well as the unit tests.To see all the available options, run `tox -l`.
### Deployment
- `npm install` The Serverless Framework project depends on a few plugins defined in `package.json`.
This will install them.- `sls deploy -s ` Stage is typically the environment such as `ci` or the account like `prod`
- `sls invoke -s -f hello` The sample generated function is named `hello`. The `sls invoke` command can be
used to test lambdas directly before invoking them via a AWS event (API Gateway, SNS, Cloudwatch, etc)