Skip to content

ks6088ts-labs/sandbox-java

Repository files navigation

test docker ghcr-release

sandbox-java

A sandbox for Java

Prerequisites

Development instructions

Local development

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

Docker development

# build docker image
make docker-build

# run docker container
make docker-run

# run CI tests in docker container
make ci-test-docker