We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a4a751 commit fa5e308Copy full SHA for fa5e308
1 file changed
README.md
@@ -84,6 +84,19 @@ exports.handler = async (event) => {
84
require('slappforge-lambda-debug-proxy');
85
```
86
87
+> **Important**
88
+>
89
+> If you intend to use **Visual Studio Code** as the IDE for the debugging, please add a `debugger;` statement as the
90
+> very first line of the function handler.
91
+> ```
92
+> exports.handler = async (event) => {
93
+> debugger;
94
+> // rest of the function code
95
+> };
96
97
+> require('slappforge-lambda-debug-proxy');
98
99
+
100
#### Configuring Lambda environment variables
101
102
Then the following environment variables must be set for the Lambda function with the appropriate values.
0 commit comments