mirror of
https://github.com/pawelmalak/flame.git
synced 2026-02-28 09:23:12 +08:00
Initial commit
This commit is contained in:
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}`);
|
||||
})
|
||||
Reference in New Issue
Block a user