clojure + clojurescript project structure best practices
I have a simple project setup for ClojureScript. I've been running a simple http server to test it out in the browser. I'm at the point I want to add a backend. Is this normally added in the same project file?
How do you package the assets like images, compiled ClojureScript files, and html files for the backend?
Check out various Clojurescript templates for patterns on how to organize projects. The backend is usually included in the same project, sometimes sharing parts of the code with the client/browser side. The assets are typically kept in a resources directory.
链接地址: http://www.djcxy.com/p/28586.html