Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.51 KB

README.md

File metadata and controls

48 lines (32 loc) · 1.51 KB

Clams

Clams is a web application framework for Clojure. Clams builds on top of Ring with the aim of providing a complete, "batteries included" package for web development. Structurally, it is a collection of Clojure libraries with glue code to handle routing, controllers, configuration, and HTTP startup.

Note: This is very early software and should be considered unstable. Caveat fabricator.

Installation

Add the following dependency to your project.clj file:

Clojars Project

Getting Started

A Clams app is a standalone program. One that has its own project.clj and -main entry point.

The most straightforward way to create a Clams app is to use the provided generator. That will create a new runnable app that can be used as a template for development. It is also useful to review the minimal app that is generated to understand the Clams feature set.

To generate and run a Clams app:

git clone [email protected]:standardtreasury-internal/clams-template.git
cd clams-template
lein install
cd ..
lein new clams myapp --snapshot
cd myapp
lein run

Documentation

Refer to the wiki for full documentation.

Authors

Jim Brusstar (@jimbru) and Chris Dean (@ctdean).

Copyright © 2014-present Standard Treasury.

Released under the terms of the MIT License.