mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +01:00
25 lines
385 B
YAML
25 lines
385 B
YAML
|
|
service: serverless-myChecker
|
|
|
|
plugins:
|
|
- serverless-webpack
|
|
- serverless-offline
|
|
|
|
custom:
|
|
webpack:
|
|
webpackConfig: ./webpack.config.js
|
|
includeModules: true
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs12.x
|
|
profile: personal
|
|
region: eu-west-1
|
|
|
|
functions:
|
|
myChecker:
|
|
handler: handler.myFunction
|
|
events:
|
|
- http:
|
|
path: webhook
|
|
method: post |