Wavy is a monorepo that is managed using lerna, in order to run it you have to have lerna, docker desktop, node and npm/yarn installed.
- Clone the repo
- Acquire the
.env-cmdrc.jsonfrom the project owner and place in the root dir. - Run
lerna bootstrapin the root dir - Start docker desktop and run
yarn compose:dev:localfrom root. This will spin up the backend (localhost:3001/graphql) and the frontend (localhost:3000),
If you have issues with docker, it can be necessary to rebuild the docker images. Run docker-compose down and docker-compose build to re build the images, docker-compose up to restart the containers.
If that doesnt work run docker system prune --volumes to completely wipe all docker cached images/volumes and then run docker-compose up. Shoudl fix it.