Alex Styl
09/04/2025, 1:58 PM./gradlew demo:jvmRun -Pio.ktor.development=true -t
Arjan van Wieringen
09/04/2025, 4:07 PMArjan van Wieringen
09/04/2025, 4:08 PMAlex Styl
09/05/2025, 3:02 AMAlex Styl
09/05/2025, 3:09 AMcall.respondText()
and I don't see the changes.
I tried separating the building and running like this:
./gradlew demo:jvmRun -Dio.ktor.development=true
./gradlew demo:build -t
Alex Styl
09/05/2025, 5:14 AMembeddedServer(
factory = Netty,
port = port,
host = "0.0.0.0",
module = Application::module
).start(wait = true)
but when i tried to use this from a multiplatform module, it just stopped working. gave upAleksei Tirman [JB]
09/05/2025, 8:07 AMAlex Styl
09/06/2025, 4:10 AM- app (setups routing and contains html that i want to be able to quickly preview. depends on `backend`)
- backend (uses ktor internally and exposes an api for app to use)
Alex Styl
09/06/2025, 4:19 AM./gradlew :server:run
(mentioned in readme) and it nothing happens when i change the route and save the changes.
even tried hardcoding 'debug = true' on the build.gradle.kts
kotlin = "2.2.10"
ktor = "3.2.3"
Arjan van Wieringen
09/06/2025, 5:14 AMAlex Styl
09/07/2025, 4:13 AM