Giter Site home page Giter Site logo

Comments (4)

tolitius avatar tolitius commented on July 18, 2024

Default Overrides

If you have a config.edn in your classpath, cprop will read it first.

You can then supply a -Dconf=/path/to/overrides.edn as you are starting the app.

For example in lein:

:profiles {:dev {;; ...
                 :jvm-opts ["-Dconf=dev-resources/dev-overrides.edn"]}

in boot:

(deftask dev []
  (System/setProperty "conf" "dev-resources/dev-overrides.edn")
  ;; ...)

This way when you call (load-config) it will first read the classpath for "common" props, and then will merge dev-overrides.edn on top of it.

ENV Overrides

Instead of -D you can also export ENV vars that would hierarchically match properties in the internal config.edn, and (load-config) will match them automatically, here is more docs about it.

Remote Overrides

You can also merge environment specific properties from Zookeep, etcd, Consul, etc.. For example this Consul client would take your config and would merge it with the values from Consul.

The Idea

The idea is to keep you code (i.e. (load-config.. )) environment agnostic and manage different environments with overrides from that environment, whether it is ENV, Consul, -D, etc.

from cprop.

mbuczko avatar mbuczko commented on July 18, 2024

thanks for so detailed answer. is config.edn hardcoded as a name for "base" configuration or is it also configurable somehow?

from cprop.

tolitius avatar tolitius commented on July 18, 2024

config.edn is hardcoded as the default, but can be overwritten with :resource:

(load-config :resource "path/to/app.edn")

with all the above "overrides" strategies still apply.

from cprop.

mbuczko avatar mbuczko commented on July 18, 2024

great, that solves my problem :)

from cprop.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.