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.
.env-cmdrc.json
from the project owner and place in the root dir. lerna bootstrap
in the root diryarn compose:dev:local
from 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.