https://kotlinlang.org logo
Join SlackCommunities
Powered by
# arkenv
  • j

    jeggy

    02/24/2019, 3:09 PM
    set the channel description: Kotlin Cli & Env argument parser.
  • j

    jeggy

    02/24/2019, 3:09 PM
    set the channel topic: Kotlin Cli & Env argument parser. - https://gitlab.com/apurebase/arkenv
  • a

    avolkmann

    02/25/2019, 1:05 PM
    🎉🥂
    K 1
  • a

    avolkmann

    03/26/2019, 3:01 PM
    set the channel topic: Type-safe Kotlin configuration parser by delegates. - https://gitlab.com/apurebase/arkenv
  • a

    avolkmann

    03/26/2019, 3:01 PM
    set the channel description: Type-safe Kotlin configuration parser by delegates.
  • j

    jeggy

    03/26/2019, 3:02 PM
    set the channel topic: Type-safe Kotlin configuration parser by delegates. - https://apurebase.gitlab.io/arkenv/
  • a

    avolkmann

    03/28/2019, 11:54 AM
    @jeggy we should also add a link to the slack channel in the readme / docs
    👌 1
    j
    • 2
    • 1
  • a

    avolkmann

    04/01/2019, 12:07 PM
    @jeggy when you have time, please review the remaining MRs 🙂
    👍 1
  • j

    jeggy

    04/01/2019, 12:37 PM
    What's the order of features installed? If I have defined the values both at cli and as environment variable, which one will be used?
  • a

    avolkmann

    04/01/2019, 2:26 PM
    The order depends on when the feature is added. Currently, the default first installs CLI, then Env. This means CLI is the highest order and wins over others
    👍 1
  • a

    avolkmann

    04/01/2019, 2:26 PM
    I can add a section about the order to the docs
  • a

    avolkmann

    04/01/2019, 2:26 PM
    maybe also some methods to easily change the order
  • a

    avolkmann

    04/02/2019, 10:41 AM
    @jeggy I also need your input on this issue: https://gitlab.com/apurebase/arkenv/issues/58
    j
    • 2
    • 3
  • j

    jeggy

    07/30/2019, 12:03 PM
    set the channel topic: Type-safe Kotlin configuration parser by delegates. - https://kgraphql.in
  • j

    jeggy

    08/20/2019, 10:23 AM
    set the channel topic: Type-safe Kotlin configuration parser by delegates. - https://apurebase.gitlab.io/arkenv/
  • a

    avolkmann

    04/07/2021, 4:39 PM
    New release out on Maven Central https://github.com/aPureBase/arkenv/releases/tag/v3.2.0
    🎉 1
  • p

    Phil Richardson

    02/22/2022, 11:56 AM
    For sub-modules, is there reason you cannot mix Arkenv subclasses with objects? e.g.
    Copy code
    class MyAppConfig: Arkenv() {
        val db by module(DbModule)
    }
    
    object DbModule {
        val jdbcUrl: String by argument()
    }