disable front deploy

This commit is contained in:
2025-09-13 10:11:06 +03:30
parent e46e9b5676
commit 083a11e336

View File

@@ -53,12 +53,12 @@ const server = http.createServer((req, res) => {
body += chunk.toString();
});
req.on('end', async () => {
try {
await deployCrmAdmin();
console.log('Deployed CRM Admin');
} catch (error) {
console.error('Error deploying:', error);
}
// try {
// await deployCrmAdmin();
// console.log('Deployed CRM Admin');
// } catch (error) {
// console.error('Error deploying:', error);
// }
res.writeHead(200, { 'Content-Type': 'application/json' });
res.end(JSON.stringify({
message: 'Echo response',