-
Install dependencies
yarn install
-
Running the project
yarn run serve
serve runs the app in development mode, to run production mode use:
yarn run serve:prod
-
Building just the client
yarn run build
Use this to get the compiled app in the
www
dir
-
Building the image
docker build -t <imageTag> .
-
Running a container
docker run -p <hostPort>:3000 <imageTag>
-
Lint
yarn run lint
-
Tests
yarn test
or
yarn run test:watch
- Unit tests
- Run with Docker
- Fix HMR
- Refactor ItemsList component
- Refactor TopBar component