1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-19 19:49:37 +02:00
flame/server.js

13 lines
261 B
JavaScript
Raw Normal View History

2021-05-06 19:03:31 +02:00
const express = require('express');
require('dotenv').config();
const app = express();
const PORT = process.env.PORT || 5005;
app.get('/', (req, res) => {
res.send('hello');
})
app.listen(PORT, () => {
console.log(`Server is running on port ${PORT}`);
})