A sandbox for Rust
Use Makefile to run the project locally.
# help
make
# install dependencies for development
make install-deps-dev
# run tests
make test
# build applications
make build
# run CI tests
make ci-test
# build docker image
make docker-build
# run docker container
make docker-run
# run CI tests in docker container
make ci-test-docker