Install docker:
brew install docker
Install node.js
brew install node
To start database and migrate it in docker just run a command:
docker-compose up -d
After db starting you should run seed for db:
npm run knex seed:run
To start local server just run a command:
npm run webpack:build
and in another console window:
npm run webpack:start