diff --git a/src/index.ts b/src/index.ts index a6f5bbe..38d156a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,6 +7,8 @@ const app: Express = express() const port = process.env.PORT || 3000 app.get('/', (req: Request, res: Response) => { + console.log(`Request to '/' route received.`) + res.send('Cellar Social API is alive and kicking!') })