mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
refactor(dokploy): update status
This commit is contained in:
parent
b5cf59e743
commit
2a01566c34
@ -7,7 +7,12 @@
|
||||
"skipLibCheck": true,
|
||||
"outDir": "dist",
|
||||
"jsx": "react-jsx",
|
||||
"jsxImportSource": "hono/jsx"
|
||||
"jsxImportSource": "hono/jsx",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["./*"],
|
||||
"@dokploy/server/*": ["../../packages/server/src/*"]
|
||||
}
|
||||
},
|
||||
"exclude": ["node_modules", "dist"]
|
||||
}
|
||||
|
@ -18,6 +18,11 @@ export const deploy = async (jobData: DeploymentJob) => {
|
||||
},
|
||||
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();
|
||||
console.log(data);
|
||||
return data;
|
||||
|
Loading…
Reference in New Issue
Block a user