Skip to content

Commit 855c3b1

Browse files
committed
Update CLI to be aware of the new basePath property
1 parent c6dd9a4 commit 855c3b1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ clikt = "5.0.1"
33
freemarker = "2.3.31"
44
jreleaser = "1.14.0"
55
kobweb-cli = "0.9.18-SNAPSHOT"
6-
kobweb-libs = "0.19.1"
6+
kobweb-libs = "0.19.3-SNAPSHOT"
77
kotter = "1.2.0-SNAPSHOT"
88
kotlin = "2.0.20"
99
kotlinx-coroutines = "1.8.1"

kobweb/src/main/kotlin/com/varabyte/kobweb/cli/run/Run.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import com.varabyte.kobweb.cli.common.kotter.warnFallingBackToPlainText
1919
import com.varabyte.kobweb.cli.common.showStaticSiteLayoutWarning
2020
import com.varabyte.kobweb.cli.common.waitForAndCheckForException
2121
import com.varabyte.kobweb.cli.stop.handleStop
22-
import com.varabyte.kobweb.common.navigation.RoutePrefix
22+
import com.varabyte.kobweb.common.navigation.BasePath
2323
import com.varabyte.kobweb.server.api.ServerEnvironment
2424
import com.varabyte.kobweb.server.api.ServerRequest
2525
import com.varabyte.kobweb.server.api.ServerRequestsFile
@@ -132,8 +132,8 @@ private fun handleRun(
132132
var serverState: ServerState? = null // Set on and after RunState.RUNNING
133133
var cancelReason by liveVarOf("")
134134
var exception by liveVarOf<Exception?>(null) // Set if RunState.INTERRUPTED
135-
// If a route prefix is set, we'll add it to the server URL (at which point we'll need to add slash dividers)
136-
val routePrefix = RoutePrefix(conf.site.routePrefix)
135+
// If a base path is set, we'll add it to the server URL (at which point we'll need to add slash dividers)
136+
val basePath = BasePath(conf.site.basePathOrRoutePrefix)
137137
section {
138138
textLine() // Add text line between this block and Gradle output above
139139

@@ -149,7 +149,7 @@ private fun handleRun(
149149
serverState!!.let { serverState ->
150150
green {
151151
text("Kobweb server ($envName) is running at ")
152-
cyan { text("http://localhost:${serverState.port}$routePrefix") }
152+
cyan { text("http://localhost:${serverState.port}$basePath") }
153153
}
154154
textLine(" (PID = ${serverState.pid})")
155155
textLine()

0 commit comments

Comments
 (0)