We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a81109 commit 4e5149bCopy full SHA for 4e5149b
backend/src/server.ts
@@ -29,7 +29,7 @@ app.use(compression());
29
app.use(express.static(path.join(__dirname, "./public")));
30
app.use('/api', routes);
31
app.use('/health', (req, res) => {
32
- res.status(200).send('Server is running');
+ res.status(200).send('Server is running!');
33
});
34
app.get('*', (req, res) => {
35
res.sendFile(path.join(__dirname, "./public/index.html"));
0 commit comments