From d286648ca925fec2515fbe24bdb6abf77538f20a Mon Sep 17 00:00:00 2001 From: Albert Chae Date: Fri, 23 Feb 2024 21:02:14 -0800 Subject: [PATCH] Fix command line invocation of spring boot demo Also remove `run` from the ktor server, alternatively we can run `gradle run` or gradle bootRun` without scoping the tasks because there aren't collisions, so it's confusing to have `run` twice for the ktor server --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6b529cd0..da4c48d5 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ val myFunction = InngestFunction( To build this in development, set up Java, Kotlin and Gradle locally and run the test server: ``` -gradle run inngest-test-server:run +gradle inngest-test-server:run ``` This runs a `ktor` web server to test the SDK against the dev server. @@ -60,5 +60,5 @@ This runs a `ktor` web server to test the SDK against the dev server. To run the `spring-boot` test server: ``` -gradle run inngest-spring-boot-demo:bootRun +gradle inngest-spring-boot-demo:bootRun ```