- Maven capable IDE (Intellij IDEA) or Docker Desktop installed
- Clone this project
- Step into the project with
cd actor-model
- Run build and start application with IDE or with Docker:
docker build -t actor-model . ; docker run -p 8080:8080 actor-model
- Start with REST Request
curl --request POST \ --url http://localhost:8080/api/start
- Stop with
curl --request POST \ --url http://localhost:8080/api/stop \ --header 'Content-Type: application/json'