Skip to content

Commit

Permalink
chore: add message to the root
Browse files Browse the repository at this point in the history
  • Loading branch information
benhuangbmj committed Jan 13, 2024
1 parent a4a3da5 commit c4dac20
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9,008 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ node_modules
.upm
*.db
tests
*.sql
*.sql
package-lock.json
14 changes: 14 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,18 @@ app.get("/supervisees", async (req, res) => {
res.json(supervisees);
});

app.get("/", (req, res) => {
const p = `<p style="color: green; width: fit-content; margin: auto; text-align: center">
Backend Lab
<br>
by Ben Huang
<br>
Messiah University
</p>`;

/*res.send(`Backend Lab\n
by Ben Huang\n
Messiah University`)*/
res.send(p);
});

Loading

0 comments on commit c4dac20

Please sign in to comment.