How can I parameterize stuff in Leiningen's project.clj? For example,
I don't want to put my AWS credentials inside the project file:

...
:aws {:access-key "XXXXXXXXXXXXXXXXXX"
      :secret-key "YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY"}

but instead use some kind of property names that refer to environment
variables or something:

...
:aws {:access-key "${aws.access.key}"
      :secret-key "${aws.secret.key}"}

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to