You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
takeshobo/src/jvmMain/resources/application.conf

19 lines
408 B

ktor {
#开发模式
development = false
deployment {
port = 8080
port = ${?PORT}
#漫画原图存储目录
filePath = static/image
#漫画图片合成打包目录
zipPath = static/zip
#免重启自动重载classes目录
watch = [ classes ]
}
application {
modules = [
ServerKt.module,
]
}
}