fix: resolve syntax error in backend console.log
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 1m0s
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 1m0s
This commit is contained in:
@@ -152,6 +152,6 @@ app.post('/api/data', authenticateAPIKey, async (req, res) => {
|
||||
});
|
||||
|
||||
app.listen(PORT, '0.0.0.0', () => {
|
||||
console.log(\`Nexstar Backend running at http://localhost:\${PORT}\`);
|
||||
console.log(\`Endpoint for n8n: POST http://localhost:\${PORT}/api/data\`);
|
||||
console.log(`Nexstar Backend running at http://localhost:${PORT}`);
|
||||
console.log(`Endpoint for n8n: POST http://localhost:${PORT}/api/data`);
|
||||
});
|
||||
Reference in New Issue
Block a user