Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 574
Justin Thomas Avatar asked Aug 29 '15 17:08

Justin Thomas


1 Answers

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.

like image 51
Terje Norderhaug Avatar answered Oct 23 '22 13:10

Terje Norderhaug