Initial Release: OpenQode Public Alpha v1.3

This commit is contained in:
Gemini AI
2025-12-14 00:40:14 +04:00
Unverified
commit 8e8d80c110
119 changed files with 31174 additions and 0 deletions

17
temp_server.js Normal file
View File

@@ -0,0 +1,17 @@
// Simple server to test if port 15044 works
const express = require('express');
const path = require('path');
const app = express();
const PORT = 15044;
// Serve static files from web directory
app.use(express.static(path.join(__dirname, 'web')));
// Basic route
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'web', 'index.html'));
});
app.listen(PORT, 'localhost', () => {
console.log(`🚀 Test server running on http://localhost:${PORT}`);
});