🌱
This commit is contained in:
14
server/index.js
Normal file
14
server/index.js
Normal file
@@ -0,0 +1,14 @@
|
||||
const express = require('express');
|
||||
const app = express();
|
||||
const PORT = process.env.PORT || 5000;
|
||||
|
||||
app.use(express.static(__dirname + '/../react-ui/build'));
|
||||
|
||||
app.get('/api', function (req, res) {
|
||||
res.set('Content-Type', 'application/json');
|
||||
res.send('{"message":"Hello from the custom server!"}');
|
||||
});
|
||||
|
||||
app.listen(PORT, function () {
|
||||
console.log(`Listening on port ${PORT}`);
|
||||
});
|
||||
Reference in New Issue
Block a user