From 4896427c9cdcb8b52915630c22f91a17e553285a Mon Sep 17 00:00:00 2001 From: numex-admin Date: Wed, 9 Sep 2026 22:40:36 +0000 Subject: [PATCH] =?UTF-8?q?Numex=20yay=C4=B1n:=20server.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 server.js diff --git a/server.js b/server.js new file mode 100644 index 0000000..a4c764e --- /dev/null +++ b/server.js @@ -0,0 +1,12 @@ +const express = require('express'); +const path = require('path'); + +const app = express(); +const PORT = process.env.PORT || 3000; + +// Statik dosyaları public klasöründen servis et +app.use(express.static(path.join(__dirname, 'public'))); + +app.listen(PORT, () => { + console.log(`Pathfinder AI çalışıyor → http://localhost:${PORT}`); +});