File tree Expand file tree Collapse file tree 4 files changed +27
-2
lines changed Expand file tree Collapse file tree 4 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 1
- To get started, < a href = " https://www.clahub.com/agreements/slvnperron/botpress " >sign the Contributor License Agreement</ a >.
1
+
Original file line number Diff line number Diff line change @@ -140,9 +140,11 @@ Here are a some modules that we think would be useful along with their assigned
140
140
| ** [ botpress-slack] ( https://github.com/botpress/botpress-slack ) ** | [ @rayshih ] ( https://github.com/rayshih )
141
141
| ** [ botpress-dialog] ( https://github.com/dialoganalytics/botpress-dialog ) ** | [ @phildionne ] ( https://github.com/phildionne )
142
142
| ** [ 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 )
143
146
| ** botpress-inspector** | no body yet
144
147
| ** botpress-transcript** | [ @rodrigocnascimento ] ( https://github.com/rodrigocnascimento )
145
- | ** botpress-hitl** | [ @danyfs ] ( https://github.com/danyfs )
146
148
| ** botpress-telegram** | no body yet
147
149
| ** botpress-kik** | no body yet
148
150
| ** botpress-sms** | no body yet
Original file line number Diff line number Diff line change 4
4
* [ Advanced Topics] ( advanced-topics.md )
5
5
* [ CLI Reference] ( cli-reference.md )
6
6
* [ Core Reference] ( core-reference.md )
7
+ * [ Debugging] ( debugging.md )
Original file line number Diff line number Diff line change
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
+ ```
You can’t perform that action at this time.
0 commit comments