This commit is contained in:
2025-05-20 23:29:53 +02:00
parent 298c31597f
commit ea83034e9a
8 changed files with 148 additions and 1 deletions
+5 -1
View File
@@ -4,7 +4,11 @@ const app = express();
const PORT = process.env.PORT || 3000;
app.use(express.json())
app.listen(PORT, ()=>{
app.listen(PORT, '0.0.0.0', ()=>{
console.log(`Running on Port: ${PORT}`)
});
app.get("/api/", (req, res) => {
res.send("KÖRTE");
});