Re: [ANN] monarch 0.2.0 - Simple database migrations for Clojure.

2014-05-27 Thread Atamert Ölçgen
You are welcome. Thanks for the library! I have given it some more thought and I now realize local overrides for leiningen config might not be a good idea. Perhaps application configuration should be completely decoupled with packaging. I've found confijulate

Re: [ANN] monarch 0.2.0 - Simple database migrations for Clojure.

2014-05-27 Thread Ray Miller
On 27 May 2014 01:02, Michael Cramm gmcr...@gmail.com wrote: Good question. I had originally wanted a separate, untracked config file but couldn't decide on a format. (like separating out protocol, host, port, etc) Exporting the environment variable felt the most non-committal at the time.

Re: [ANN] monarch 0.2.0 - Simple database migrations for Clojure.

2014-05-27 Thread Manuel Paccagnella
Il giorno martedì 27 maggio 2014 08:16:49 UTC+2, Atamert Ölçgen ha scritto: You are welcome. Thanks for the library! Second that. I have given it some more thought and I now realize local overrides for leiningen config might not be a good idea. Perhaps application configuration should

Re: [ANN] monarch 0.2.0 - Simple database migrations for Clojure.

2014-05-27 Thread Ray Miller
On 27 May 2014 09:35, Manuel Paccagnella manuel.paccagne...@gmail.com wrote: I've found confijulate, here. It might be useful. Well, ok. Another configuration library that I wasn't aware of when I wrote confunion. Another one that I found after writing mine is carica, which seems quite

Re: [ANN] monarch 0.2.0 - Simple database migrations for Clojure.

2014-05-27 Thread Andrey Antukh
Nomad is an other tool like confijulate: https://github.com/james-henderson/nomad I use it in some projects and seems better documented that confijulate and uses edn as file format. Andrey 2014-05-27 10:43 GMT+02:00 Ray Miller r...@1729.org.uk: On 27 May 2014 09:35, Manuel Paccagnella

Re: [ANN] monarch 0.2.0 - Simple database migrations for Clojure.

2014-05-27 Thread Dave Della Costa
Just to add to the chorus--environ (https://github.com/weavejester/environ) is a good, basic option which we've had lots of success using. (2014/05/27 18:08), Andrey Antukh wrote: Nomad is an other tool like confijulate: https://github.com/james-henderson/nomad I use it in some projects and

Re: [ANN] monarch 0.2.0 - Simple database migrations for Clojure.

2014-05-26 Thread Michael Cramm
Good question. I had originally wanted a separate, untracked config file but couldn't decide on a format. (like separating out protocol, host, port, etc) Exporting the environment variable felt the most non-committal at the time. It wouldn't be too much work to have a file living in

[ANN] monarch 0.2.0 - Simple database migrations for Clojure.

2014-05-25 Thread Michael Cramm
I realize that there are other database migration frameworks already availablefor clojure projects, but I always seem to run into issues pretty fast in trying to use them. This is also the first plugin I've developed and made publicly available, so I'd love some feedback! I've been using

Re: [ANN] monarch 0.2.0 - Simple database migrations for Clojure.

2014-05-25 Thread Atamert Ölçgen
Is there a reason why DATABASE_URL isn't in the project config? I guess a more relevant question would be to ask if there's something like a local config file for leiningen projects? Something that is per-project but ideally ignored by the VCS. Something that you can use to override what's inside