mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-18 19:19:36 +02:00
Initial commit
This commit is contained in:
commit
573814ddac
25 changed files with 18830 additions and 0 deletions
13
server.js
Normal file
13
server.js
Normal 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}`);
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue