forked from marcy-terui/serverless-alexa-skills
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserverless.yml
45 lines (43 loc) · 1.11 KB
/
serverless.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
service: alexa-skills-test
provider:
name: aws
stage: dev
runtime: nodejs6.10
functions:
hello:
handler: handler.hello
plugins:
- serverless-alexa-skills
custom:
alexa:
# vendorId: ${env:AMAZON_VENDOR_ID}
# clientId: ${env:AMAZON_CLIENT_ID}
# clientSecret: ${env:AMAZON_CLIENT_SECRET}
skills:
- id: ${env:ALEXA_SKILL_ID}
manifest:
publishingInformation:
locales:
ja-JP:
name: test3
apis:
custom: {}
manifestVersion: '1.0'
models:
ja-JP:
interactionModel:
languageModel:
invocationName: hello
intents:
- name: AMAZON.CancelIntent
samples: []
- name: AMAZON.HelpIntent
samples: []
- name: AMAZON.StopIntent
samples: []
- name: HelloWorldIntent
samples:
- hello
- say hello
- hello world
- hello my world