From e1af3a8759f21c400a79ba3dc48d8c798abe5fed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gonz=C3=A1lez=20Reina?= Date: Tue, 9 Dec 2025 20:24:59 +0000 Subject: [PATCH 1/2] Update API endpoint in Dokploy deployment instructions --- apps/docs/content/docs/core/applications/going-production.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/content/docs/core/applications/going-production.mdx b/apps/docs/content/docs/core/applications/going-production.mdx index 91ca961..9a5c356 100644 --- a/apps/docs/content/docs/core/applications/going-production.mdx +++ b/apps/docs/content/docs/core/applications/going-production.mdx @@ -153,7 +153,7 @@ jobs: uses: dokploy/dokploy-action@v1 run: | curl -X 'POST' \ - 'https:///api/trpc/application.deploy' \ + 'https:///api/application.deploy' \ -H 'accept: application/json' \ -H 'x-api-key: YOUR-GENERATED-API-KEY' \ -H 'Content-Type: application/json' \ From 59a583fd066c233f446c672b0dc47414287ee64e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gonz=C3=A1lez=20Reina?= Date: Tue, 9 Dec 2025 20:53:45 +0000 Subject: [PATCH 2/2] fix payload --- apps/docs/content/docs/core/applications/going-production.mdx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/docs/content/docs/core/applications/going-production.mdx b/apps/docs/content/docs/core/applications/going-production.mdx index 9a5c356..086e740 100644 --- a/apps/docs/content/docs/core/applications/going-production.mdx +++ b/apps/docs/content/docs/core/applications/going-production.mdx @@ -158,9 +158,7 @@ jobs: -H 'x-api-key: YOUR-GENERATED-API-KEY' \ -H 'Content-Type: application/json' \ -d '{ - "json":{ - "applicationId": "YOUR-APPLICATION-ID" - } + "applicationId": "YOUR-APPLICATION-ID" }' ```