fix: resolve syntax error in backend console.log
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 1m0s

This commit is contained in:
Cauê Faleiros
2026-05-04 15:50:59 -03:00
parent b1e8cc55df
commit 7a291120c7

View File

@@ -152,6 +152,6 @@ app.post('/api/data', authenticateAPIKey, async (req, res) => {
}); });
app.listen(PORT, '0.0.0.0', () => { app.listen(PORT, '0.0.0.0', () => {
console.log(\`Nexstar Backend running at http://localhost:\${PORT}\`); console.log(`Nexstar Backend running at http://localhost:${PORT}`);
console.log(\`Endpoint for n8n: POST http://localhost:\${PORT}/api/data\`); console.log(`Endpoint for n8n: POST http://localhost:${PORT}/api/data`);
}); });