I got path error when I read file in production on Heroku
I use http://clojure.java.io/file but the path seems correct only locally.
Any ideas what to do to make it work on heroku?
Thanks for your help!
@leontalbot use <http://clojure.java.io/resource|clojure.java.io/resource>
and have the file in ./resources
e.g. (<http://clojure.java.io/resource|clojure.java.io/resource> "foo.txt")
will give you the file that lives in ./resources/foo.txt