Hristijan
07/28/2023, 2:07 PMapplication.conf
variables through GitHub actions
code in 🧵Hristijan
07/28/2023, 2:08 PMktor {
development = true
development = ${?DEVELOPMENT}
deployment {
port = 8080
port = ${?PORT}
watch = [ classes, resources ]
}
application {
modules = [ com.test.ApplicationKt.module ]
}
}
how can i set development
to false when releasing and also port
to custom one?krzysztof
07/28/2023, 4:07 PM