fix(gtm): Ultimate prompt syntax robustness, add versions to logs, update migration docs

This commit is contained in:
2025-12-31 15:26:23 +00:00
parent 9ad52893f9
commit 30bfe54536
3 changed files with 47 additions and 32 deletions

View File

@@ -73,8 +73,10 @@ app.get('*', (req, res) => {
});
const VERSION = "1.1.1_Fix"; // Add a version for debugging
const server = app.listen(port, () => {
console.log(`GTM Architect server listening at http://localhost:${port} (Timeout: 600s)`);
console.log(`GTM Architect server listening at http://localhost:${port} (Version: ${VERSION})`);
});
// Prevent 502 Bad Gateway by increasing Node.js server timeouts to match Nginx