Initial commit

This commit is contained in:
2025-12-04 18:39:24 +00:00
parent ccf549d9f7
commit 8c35cca0d8

7
index.js Normal file
View File

@@ -0,0 +1,7 @@
const http = require('http');
const server = http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello from Hooc Infra! Project: testproject1764873562838');
});
server.listen(3000, () => console.log('Server running on port 3000'));