From 339de1dba58dcece8ffec8bed675d1ddbdfc5d78 Mon Sep 17 00:00:00 2001 From: Luke Tornquist Date: Wed, 5 Feb 2025 08:44:19 -0500 Subject: [PATCH] Add command necessary to build web UI, and update docker build to point to Dockerfile --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b3deed64f..288ba720d 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,13 @@ $ gradle clean shadowJar ## Run the Service +### Run the Misk-Web Build +In order to ensure the web UI is built and able to be served by the service, run the following command: + +``` +$ npm install -g @misk/cli && miskweb ci-build -e +``` + ### From the command line ``` @@ -30,7 +37,7 @@ $ java -jar service/build/libs/service.jar ``` ### From IntelliJ - Right-click on `BackfilaDevelopmentService.kt` and select `Run` +Right-click on `BackfilaDevelopmentService.kt` and select `Run` ### From Docker @@ -39,7 +46,7 @@ $ java -jar service/build/libs/service.jar Build a Docker image of backfila: ``` -$ docker build -t backfila-0.0.1 service +$ docker build -t backfila-0.0.1 ``` #### Running locally