hosting
implementation("cloud.orbit:orbit-server:{{< release >}}")import kotlinx.coroutines.runBlocking
import orbit.server.OrbitServerConfig
import orbit.server.OrbitServer
fun main() {
runBlocking {
val server = OrbitServer(OrbitServerConfig(
... configuration
))
server.start().join()
}
}OrbitServerConfig
Last updated
Was this helpful?