Install dependencies
$ yarn
Build sources and run server:
$ yarn build
$ yarn start
The server is accessible at http://localhost:3000 by default.
The build and start scripts also have watch-mode counterparts, which is useful during development:
$ yarn build:watch
$ yarn start:watch
This project uses conventional commit messages. Example valid commit message:
feat: added graceful shutdown
You can also use the following command for commits:
$ yarn commit
The above command will guide you through the parts of the commit message interactively.