Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed default message for backend server #716

Merged
merged 3 commits into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading