-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjovo.project.js
32 lines (30 loc) · 912 Bytes
/
jovo.project.js
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
const { AlexaCli } = require('@jovotech/platform-alexa');
const { ProjectConfig } = require('@jovotech/cli-core');
/*
|--------------------------------------------------------------------------
| JOVO PROJECT CONFIGURATION
|--------------------------------------------------------------------------
|
| Information used by the Jovo CLI to build and deploy projects
| Learn more here: www.jovo.tech/docs/project-config
|
*/
const project = new ProjectConfig({
endpoint: '${JOVO_WEBHOOK_URL}',
plugins: [
// Add Jovo CLI plugins here
new AlexaCli({
locales: { en: ['en-US'] },
conversations: {
enabled: true,
directory: 'resources/alexa/conversations',
acdlDirectory: 'acdl',
responsesDirectory: 'responses',
sessionStartDelegationStrategy: {
target: 'AMAZON.Conversations',
},
},
}),
],
});
module.exports = project;