hey guys, how do you set `application.conf` variab...
# ktor
h
hey guys, how do you set
application.conf
variables through GitHub actions code in 🧵
Copy code
ktor {
    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?