- Node 10
- Docker
- Yarn
- run
yarnonce to fetch all dependencies
- run
yarn buildto build frontend and backend- run
cd packages/frontend && yarn buildto build only frontend - run
cd packages/backend && yarn buildto build only backend
- run
- run
./scripts/buildto build projects - run
./scripts/assembleto build one Docker image composed of images for frontend, backend and MonogDB
- run
yarn mongodbto start mongodb instance from Docker image (this might require admin rights to start the docker service) - run
yarn startto start full development application, or:- run
cd packages/frontend && yarn startto start only frontend - run
cd packages/backend && yarn startto start only backend
- run
- run
./scripts/startto start Docker image
- run
yarn testto test full development application, or:- run
cd packages/shared && yarn testto test only shared code - run
cd packages/backend && yarn testto test only backend
- run
- run
yarn lintto lint all code
- run
yarn cleanto removenode_modulesfolders, cache folder from Parcel and built distributions