1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-18 19:19:36 +02:00

Initial commit

This commit is contained in:
unknown 2021-05-06 19:03:31 +02:00
commit 573814ddac
25 changed files with 18830 additions and 0 deletions

13
server.js Normal file
View file

@ -0,0 +1,13 @@
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}`);
})