fix: remove bkp file, fix compose network, remove debug log

This commit is contained in:
2026-03-21 23:33:42 +00:00
parent 9f5d322b00
commit 7daea07618
3 changed files with 0 additions and 53 deletions

View File

@@ -31,7 +31,6 @@ app.post('/process-template', (req, res) => {
// Find the template file from the uploaded files
const templateFile = req.files?.find(file => file.fieldname === 'template');
const templateData = req.body?.data ? JSON.parse(req.body.data) : null;
console.log(templateData)
if (!templateFile || !templateData) {
return res.status(400).json({
error: 'Missing required fields',