Joseph Le Brech
Joseph Le Brech

Reputation: 6653

Clojure and noir for a classic web application

How would one go about using Noir with user authentication and an ORM.

Would it all have to be accessed via java objects?

Are there any rails style "blog" tutorials that go about user auth and database access?

Upvotes: 6

Views: 2095

Answers (2)

Denis Fuenzalida
Denis Fuenzalida

Reputation: 3346

I made a small noir-based webapp which lists the contents of an 'users' table from MySQL using the korma library. It's pretty simple but you can check it here: https://github.com/dfuenzalida/noir-showdate

Upvotes: 2

Michiel Borkent
Michiel Borkent

Reputation: 34820

Take a look at https://github.com/ibdknox/Noir-blog. It uses a simple file-based db, but it shouldn't be too hard to replace it with for example MongoDB using CongoMongo, or a different one.

Upvotes: 9

Related Questions