Skip to content

Commit 5cfc593

Browse files
authored
fix: skip tls verification for dev runs (#71)
When connecting to `api.psdev.sh`, we use a self-signed cert so the cert needs to be explicitly ignored.
1 parent a3bfecd commit 5cfc593

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Run the CLI in development mode. This will use the local Paperspace API and
55
* Console URLs.
66
*/
7-
"dev": "PAPERSPACE_API_URL=https://api.psdev.sh:8443/v1 PAPERSPACE_CONSOLE_URL=https://console.psdev.sh:8443/ deno run --allow-env --allow-run --allow-read --allow-write --allow-net mod.ts",
7+
"dev": "PAPERSPACE_API_URL=https://api.psdev.sh:8443/v1 PAPERSPACE_CONSOLE_URL=https://console.psdev.sh:8443/ deno run --allow-env --allow-run --allow-read --allow-write --allow-net --unsafely-ignore-certificate-errors mod.ts",
88
/**
99
* Run the CLI in production mode. This will use the production Paperspace API and
1010
* Console URLs.

0 commit comments

Comments
 (0)