feat: Added backend server with home page message

This commit is contained in:
sweep-ai[bot] 2023-11-30 14:09:55 +00:00 committed by GitHub
parent 226af5bf41
commit 8a17e5077c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
backend/server.js Normal file
View File

@ -0,0 +1,7 @@
const express = require('express');
const app = express();
app.get('/', (req, res) => res.send('Your backend server is running correctly'));
app.listen(5000, () => console.log('Server is running on port 5000'));