Starter kit for Kotlin, using gradle and spek for testing
This project contains a simple Hello World
application.
import org.jooby.Jooby.*
import org.jooby.Kooby
class App : Kooby({
get {
val name = param("name").value("Kotlin")
"Hello $name!"
}
})
fun main(args: Array<String>) {
run(::App, args)
}
./gradlew run
./gradlew test
- Read the module documentation
- Join the channel
- Join the group