diff --git a/src/index.ts b/src/index.ts index ac9f2a7..01ba520 100755 --- a/src/index.ts +++ b/src/index.ts @@ -10,6 +10,10 @@ const socketDebug = debug("socket"); const app = express(); const port = process.env.PORT || 80; // default port to listen +app.get("/", (req, res) => { + res.send("Excalidraw collaboration server is up :)"); +}); + const server = http.createServer(app); server.listen(port, () => {