We have a docker-compose available to deploy all the services necessary for the development environment.
Depending on your OS, there are different ways of installing Docker and Docker Compose. Please, visit https://docs.docker.com/compose/install/
Once you have Docker Compose installed, follow the below steps:
- Clone the repository and enter de directory.
git clone git@github.com:wizzie-io/wizz-vis.git git checkout v0.11 cd wizz-vis/ - Modify the
.envfile or create an new one (.env.local) and reference it in thedocker-compose.ymlfile. You have to set, at least, theDRUID_URLvalue. Then, execute the docker compose and start all the services.docker-compose up -d - You can check the status of the containers executing:
docker-compose ps - From now, you can play with the code, and the changes will be hot reloaded.