create-zuplo-api 6.72.14 → 6.72.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -21,6 +21,14 @@ result.
|
|
|
21
21
|
You can start editing the API by modifying `config/routes.oas.json`. The dev
|
|
22
22
|
server will automatically reload the API with your changes.
|
|
23
23
|
|
|
24
|
+
## Debugging
|
|
25
|
+
|
|
26
|
+
In VS Code, open **Run and Debug**, select **Launch & Attach Zuplo**, and click
|
|
27
|
+
the green play button.
|
|
28
|
+
|
|
29
|
+
For other editors and more details, see the
|
|
30
|
+
[debugging guide](https://zuplo.com/docs/articles/local-development-debugging).
|
|
31
|
+
|
|
24
32
|
## Learn More
|
|
25
33
|
|
|
26
34
|
To learn more about Zuplo, you can visit the
|
|
@@ -9,14 +9,7 @@
|
|
|
9
9
|
"request": "launch",
|
|
10
10
|
"name": "Launch Zuplo",
|
|
11
11
|
"runtimeExecutable": "npx",
|
|
12
|
-
"runtimeArgs": [
|
|
13
|
-
"@zuplo/cli",
|
|
14
|
-
"dev",
|
|
15
|
-
"--debug-port",
|
|
16
|
-
"9229",
|
|
17
|
-
"--port",
|
|
18
|
-
"9000"
|
|
19
|
-
],
|
|
12
|
+
"runtimeArgs": ["zuplo", "dev", "--debug-port", "9229", "--port", "9000"],
|
|
20
13
|
"console": "integratedTerminal",
|
|
21
14
|
"internalConsoleOptions": "neverOpen"
|
|
22
15
|
},
|
|
@@ -21,6 +21,11 @@ result.
|
|
|
21
21
|
You can start editing the API by modifying `config/routes.oas.json`. The dev
|
|
22
22
|
server will automatically reload the API with your changes.
|
|
23
23
|
|
|
24
|
+
## Debugging
|
|
25
|
+
|
|
26
|
+
To set breakpoints and attach a debugger to your local gateway, see the
|
|
27
|
+
[debugging guide](https://zuplo.com/docs/articles/local-development-debugging).
|
|
28
|
+
|
|
24
29
|
## Learn More
|
|
25
30
|
|
|
26
31
|
To learn more about Zuplo, you can visit the
|