From 5bdff571681b8ac4afdf47d5af8eb4619dca5fd0 Mon Sep 17 00:00:00 2001 From: Will Garcia Date: Tue, 3 Oct 2023 12:07:05 +1000 Subject: [PATCH] docs: add install instructions --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..5219e40 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# Coffeeshop Demo app + +## Pre-requisites + +- [Java 11](https://adoptopenjdk.net/installation.html) and [Maven](https://maven.apache.org/install.html) +- [NodeJS](https://nodejs.org/en/download/) +- [Docker-compose](https://docs.docker.com/compose/install/) + +## Run locally + +```bash +docker-compose up +cd barista-node/ && npm install && npm start +cd barista-kafka/ && mvn compile quarkus:dev +cd coffeeshop-service/ && mvn compile quarkus:dev +``` + +**Note**: `barista-http` is not required. + +## Clean up + +```bash +docker-compose down +docker-compose rm +```