Skip to content

Commit

Permalink
Changed default message for backend server (#716)
Browse files Browse the repository at this point in the history
* Changed default message for backend server

* Remove unneeded preview link.
  • Loading branch information
jeffplays2005 authored Jul 29, 2024
1 parent edceaa6 commit 4c3d332
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 4c3d332

Please sign in to comment.