mirror of
https://github.com/aljazceru/landscape-template.git
synced 2025-12-27 19:24:18 +01:00
24 lines
421 B
YAML
24 lines
421 B
YAML
custom:
|
|
serverless-offline:
|
|
httpPort: 8888
|
|
|
|
plugins:
|
|
- serverless-offline
|
|
service: serverless-graphql
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs12.x
|
|
region: ap-southeast-2
|
|
functions:
|
|
graphql:
|
|
handler: functions/graphql/index.handler
|
|
events:
|
|
- http:
|
|
path: graphql
|
|
method: post
|
|
cors: true
|
|
- http:
|
|
path: graphql
|
|
method: get
|
|
cors: true
|