Skip to content

Commit

Permalink
docs: add install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Garcia committed Oct 3, 2023
1 parent 8049117 commit 5bdff57
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
```

0 comments on commit 5bdff57

Please sign in to comment.