Created
March 9, 2023 13:35
-
-
Save heddendorp/06df539f2043269f207d6e0c0fce63db to your computer and use it in GitHub Desktop.
n8n-debugging-port
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/package.json b/package.json | |
| index 7600fd9..654fd93 100644 | |
| --- a/package.json | |
| +++ b/package.json | |
| @@ -19,9 +19,9 @@ | |
| "lintfix": "turbo run lintfix", | |
| "optimize-svg": "find ./packages -name '*.svg' ! -name 'pipedrive.svg' -print0 | xargs -0 -P16 -L20 npx svgo", | |
| "start": "run-script-os", | |
| - "start:default": "cd packages/cli/bin && ./n8n", | |
| + "start:default": "cd packages/cli/bin && node --inspect=9222 n8n", | |
| "start:tunnel": "./packages/cli/bin/n8n start --tunnel", | |
| - "start:windows": "cd packages/cli/bin && n8n", | |
| + "start:windows": "cd packages/cli/bin && node --inspect=9222 n8n", | |
| "test": "turbo run test", | |
| "watch": "turbo run watch", | |
| "webhook": "./packages/cli/bin/n8n webhook", |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment