mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
25 lines
463 B
YAML
25 lines
463 B
YAML
service:
|
|
name: hello-world
|
|
frameworkVersion: '2'
|
|
|
|
provider:
|
|
name: cloudflare
|
|
config:
|
|
accountId: CLOUDFLARE_ACCOUNT_ID
|
|
zoneId: CLOUDFLARE_ZONE_ID
|
|
|
|
plugins:
|
|
- serverless-cloudflare-workers
|
|
|
|
functions:
|
|
hello:
|
|
name: hello
|
|
script: helloWorld # there must be a file called helloWorld.js
|
|
events:
|
|
- http:
|
|
url: example.com/hello/*
|
|
method: GET
|
|
headers:
|
|
foo: bar
|
|
x-client-data: value
|