Clojure + clojurescript project structure best practices

I have a simple project setup for ClojureScript. I checked a simple HTTP server to check it in a browser. I want to add a backend. Is this normally being added to the same project file?

How do you pack assets such as images, compiled ClojureScript files and html files for the backend?

+7
clojure clojurescript
source share
1 answer

Check out the various Clojurescript templates for project organization templates. The backend is usually included in the same project, sometimes separating parts of the code from the client / browser side. Assets are usually stored in the resource directory.

+3
source share

All Articles