Webpack 4 boilerplate with Babel, SASS, React 16.2, React router v4 on board
You only need node.js pre-installed and you’re good to go.
Install dependencies
$ yarn install
Run the local webpack-dev-server with livereload and autocompile on http://localhost:8080/
$ yarn dev
Build the current application
$ yarn build
Check the stats of the bundle
$ yarn stats
Build using docker
$ docker-compose build web
Running web-app using docker
$ docker-compose up web
Running docker terminal commands
$ docker-compose run --rm web yarn <script>
Getting into container
$ docker-compose run --rm web bash