-
Notifications
You must be signed in to change notification settings - Fork 2
Set Up
Neil Johnson edited this page Nov 1, 2021
·
8 revisions
You can run the app locally on port 8080 using the following Bash commands from the project root:
$ docker build -t versa .
$ docker run -it --rm --name versa-app -p 8080:8080 versa
Then you can run the browser app to consume the API endpoints defined in it. Currently only POST /party and GET /parties are defined, but more should come quickly. Storage is all in-memory at this point, nothing persisted to or read from disk/DB, so for the time being, you'll need to call POST methods to put data in before getting data out.