mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-15 20:25:23 +02:00
refactor(dokploy): update status
This commit is contained in:
@@ -7,7 +7,12 @@
|
|||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"outDir": "dist",
|
"outDir": "dist",
|
||||||
"jsx": "react-jsx",
|
"jsx": "react-jsx",
|
||||||
"jsxImportSource": "hono/jsx"
|
"jsxImportSource": "hono/jsx",
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"@/*": ["./*"],
|
||||||
|
"@dokploy/server/*": ["../../packages/server/src/*"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"exclude": ["node_modules", "dist"]
|
"exclude": ["node_modules", "dist"]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,6 +18,11 @@ export const deploy = async (jobData: DeploymentJob) => {
|
|||||||
},
|
},
|
||||||
body: JSON.stringify(jobData),
|
body: JSON.stringify(jobData),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
console.log("Status:", result.status);
|
||||||
|
console.log("Content-Type:", result.headers.get("content-type"));
|
||||||
|
console.log("Body:", await result.text());
|
||||||
|
console.log(result);
|
||||||
const data = await result.json();
|
const data = await result.json();
|
||||||
console.log(data);
|
console.log(data);
|
||||||
return data;
|
return data;
|
||||||
|
|||||||
Reference in New Issue
Block a user