Skip to content

Commit 6664362

Browse files
committed
Merge branch 'master' into sp-postgres
2 parents 819aedf + 9125acd commit 6664362

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
To get started, <a href="https://www.clahub.com/agreements/slvnperron/botpress">sign the Contributor License Agreement</a>.
1+

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,11 @@ Here are a some modules that we think would be useful along with their assigned
140140
| **[botpress-slack](https://github.com/botpress/botpress-slack)** | [@rayshih](https://github.com/rayshih)
141141
| **[botpress-dialog](https://github.com/dialoganalytics/botpress-dialog)** | [@phildionne](https://github.com/phildionne)
142142
| **[botpress-scheduler](https://github.com/botpress/botpress-scheduler)** | [@slvnperron](https://github.com/slvnperron)
143+
| **[botpress-hitl](https://github.com/botpress/botpress-hitl)** | [@danyfs](https://github.com/danyfs)
144+
| **[botpress-botkit](https://github.com/botpress/botpress-botkit)** | [@slvnperron](https://github.com/slvnperron)
145+
| **[botpress-api.ai](https://github.com/botpress/botpress-api.ai)** | [@slvnperron](https://github.com/slvnperron)
143146
| **botpress-inspector** | no body yet
144147
| **botpress-transcript** | [@rodrigocnascimento](https://github.com/rodrigocnascimento)
145-
| **botpress-hitl** | [@danyfs](https://github.com/danyfs)
146148
| **botpress-telegram** | no body yet
147149
| **botpress-kik** | no body yet
148150
| **botpress-sms** | no body yet

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
* [Advanced Topics](advanced-topics.md)
55
* [CLI Reference](cli-reference.md)
66
* [Core Reference](core-reference.md)
7+
* [Debugging](debugging.md)

docs/debugging.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## Debugging
2+
3+
Here you find how to configure your favorite IDE to debug your code.
4+
5+
### Visual Studio Code
6+
Press f1 and look for launch.json. Inside the "configurations" array, insert the following object:
7+
```json
8+
{
9+
"type": "node",
10+
"request": "launch",
11+
"name": "Launch Program",
12+
"cwd": "${workspaceRoot}",
13+
"port": 5859,
14+
"program": "${workspaceRoot}/node_modules/botpress/bin/botpress",
15+
"runtimeExecutable": "node",
16+
"runtimeArgs": [
17+
"--debug"
18+
],
19+
"args": [ "start" ],
20+
"stopOnEntry": false
21+
}
22+
```

0 commit comments

Comments
 (0)