-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Will Garcia
committed
Oct 3, 2023
1 parent
8049117
commit 5bdff57
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |