Clojure and noir for classic web application

How can I use Noir with user authentication and ORM.

Is all this accessible through java objects?

Are there any regla style guides that deal with user access and database access?

+6
source share
2 answers

Take a look at https://github.com/ibdknox/Noir-blog . It uses simple file db , but it should not be too difficult to replace, for example, MongoDB using CongoMongo or another.

+9
source

I created a small noir web application that lists the contents of a user table from MySQL using the korma library . It is quite simple, but you can check it here: https://github.com/dfuenzalida/noir-showdate

+2
source

Source: https://habr.com/ru/post/902922/


All Articles