Initial commit

This commit is contained in:
2025-12-04 19:19:48 +00:00
parent f8c34374f2
commit 360c907c26

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