-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathvoiceapp311.code-workspace
More file actions
43 lines (42 loc) · 1.04 KB
/
voiceapp311.code-workspace
File metadata and controls
43 lines (42 loc) · 1.04 KB
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
{
"folders": [
{
"path": "."
}
],
"settings": {},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug Alexa Skill (Python)",
"type": "python",
"request": "launch",
"program": "${command:ask.debugAdapterPath}",
"pythonPath": "${command:python.interpreterPath}",
"args": [
"--accessToken",
"${command:ask.accessToken}",
"--skillId",
"${command:ask.skillIdFromWorkspace}",
"--skillHandler",
"lambda_handler",
"--skillFilePath",
"${workspaceFolder}/mycity/lambda_function.py"
],
"console": "internalConsole",
"cwd": "${workspaceFolder}/mycity/",
"env": {
"ARCGIS_CLIENT_ID": "Get from Code for Boston member",
"ARCGIS_CLIENT_SECRET":"Get from Code for Boston member",
"SLACK_WEBHOOKS_URL": "Get from Code for Boston member",
"PYTHONPATH": "${workspaceFolder}/mycity",
"WHOAMI": "Code for Boston developer"
}
}
]
},
"extensions": {
"recommendations": ["ask-toolkit.alexa-skills-kit-toolkit", "ms-python.python"]
}
}