TIMEOUT - connect timeout api (ms)
PORT - Port server is listening on
npm run dev
docker run -it -w=/home/node/app --user node --rm --volume $PWD:/home/node/app node npm install
docker-compose up
# init git flow
git flow init
# start a new feature
git flow feature start <my-new-feature>
# finish feature
git flow feature finish <my-new-feature>
# start a new publish
git flow publish start
# bump version number in package.json
# publish new package
git flow publish finish