Initial Release: OpenQode Public Alpha v1.3
This commit is contained in:
11
test_server.js
Normal file
11
test_server.js
Normal file
@@ -0,0 +1,11 @@
|
||||
const express = require('express');
|
||||
const app = express();
|
||||
const PORT = 15044;
|
||||
|
||||
app.get('/', (req, res) => {
|
||||
res.send('Test server is working!');
|
||||
});
|
||||
|
||||
app.listen(PORT, '0.0.0.0', () => {
|
||||
console.log(`Test server running on http://localhost:${PORT}`);
|
||||
});
|
||||
Reference in New Issue
Block a user