Initial commit

This commit is contained in:
2025-12-04 17:16:23 +00:00
parent ed2af2216c
commit 2def6ed8c0

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: git-info-test-1uwxt');
});
server.listen(3000, () => console.log('Server running on port 3000'));