From 546573c6948c603ca93ed6eafc77515cad2a38b9 Mon Sep 17 00:00:00 2001 From: Matiss Jurevics Date: Sat, 6 Dec 2025 16:33:00 +0000 Subject: [PATCH] feat: set up app --- Backend/index.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Backend/index.ts b/Backend/index.ts index f67b2c6..b7a8e53 100644 --- a/Backend/index.ts +++ b/Backend/index.ts @@ -1 +1,11 @@ -console.log("Hello via Bun!"); \ No newline at end of file +import express from 'express'; + +const app = express(); + +app.get('/', (req, res) => { + res.send('Hello World'); +}); + +app.listen(3000, () => { + console.log('Server is running on port 3000'); +}); \ No newline at end of file