I wrote a readme

This commit is contained in:
Alicia Sykes
2019-10-13 00:33:11 +01:00
parent f661ecfeb0
commit c678ca0ef2
3 changed files with 84 additions and 26 deletions

View File

@@ -7,7 +7,7 @@ const port = process.env.PORT || 3002;
try {
connect()
.use(serveStatic(`${__dirname}/dist`))
.listen(port, () => console.log(`Boom, app is running on port ${port}`));
.listen(port, () => console.log(`Boom, app is running on port ${port} 🚀`));
} catch (error) {
console.log('Something fucked up', error);
}