Skip to content

Commit

Permalink
Merge branch 'master' into 608-backend-send-confirmation-when-admin-a…
Browse files Browse the repository at this point in the history
…dds-a-user-using-the-add-booking-endpoint
  • Loading branch information
jeffplays2005 authored Jul 29, 2024
2 parents c11718c + 4c3d332 commit 230ad0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ app.use("/api-docs", swaggerUi.serve, async (_req: Request, res: Response) => {
}
})
app.get("/", (req: Request, res: Response) => {
res.send("Hello World From the Typescript Server!")
res.send("UASC backend server is up!")
})

RegisterRoutes(app)

const port = process.env.PORT || 8000

const _app = app.listen(port, () => {
console.log(`Example app listening on port ${port}`)
console.log(`UASC backend server listening on port ${port}.`)
})

// So we can use for testing
Expand Down

0 comments on commit 230ad0b

Please sign in to comment.