mirror of
https://github.com/myfatemi04/wheelshare-old-backend.git
synced 2025-04-21 20:19:49 -04:00
change port to 8080
This commit is contained in:
parent
1121ae0f66
commit
8d453e7ba9
|
@ -1 +1,9 @@
|
|||
/**
|
||||
* Records users by id
|
||||
*/
|
||||
let users: Record<string, Carpool.User> = {};
|
||||
|
||||
/**
|
||||
* Records groups by id
|
||||
*/
|
||||
let groups: Record<string, Carpool.Group> = {};
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
import * as express from "express";
|
||||
import * as express from 'express';
|
||||
|
||||
const app = express();
|
||||
|
||||
app.get("/", (req, res) => {
|
||||
res.send("Hello!");
|
||||
app.get('/', (req, res) => {
|
||||
res.send('Hello!');
|
||||
});
|
||||
|
||||
app.listen(80, () => void console.log("Listening on port 80"));
|
||||
app.listen(8080, () => void console.log('Listening on port 80'));
|
||||
|
|
Loading…
Reference in New Issue
Block a user