The readme says:
## Rebuild without blowing away local data
1. make stop
2. make clean
3. make build
4. make run
But the makefile doesn't content the clean target. It does clean-data and clean-images, so I suppose that make clean should be make clean-data.
Also:
## Rebuild AND blow away local data
1. make stop
2. make clean-data
3. make build
4. make run
That I suppose should be make clean-images instead of make clean-data.
The readme says:
But the makefile doesn't content the
cleantarget. It doesclean-dataandclean-images, so I suppose thatmake cleanshould bemake clean-data.Also:
That I suppose should be
make clean-imagesinstead ofmake clean-data.