Skip to content

Latest commit

 

History

History
44 lines (37 loc) · 731 Bytes

README.adoc

File metadata and controls

44 lines (37 loc) · 731 Bytes

ktor Build Status

This repo contains yet another light web framework for kotlin

rest api
http :8080

{
    "message": "hello!"
}
docker-compose
bash gradlew build
docker-compose up
# query rest api...
docker-compose down -v
docker
bash gradlew build
docker build -t ktor .
docker run --rm --name ktor -p 8080:8080 ktor
java -jar build/libs/*.jar
build and run (gradle shadow plugin)
bash gradlew build
ava -jar build/libs/*.jar
quickstart (application plugin)
bash gradlew run