Skip to content

saivlis/clojurecart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clojurecart

start with: lein ring server-headless

open in a browser: http://localhost:3000

Couchdb should run on: http://localhost:5984

databases users and carts will be created at first access

in the database carts the following document is needed:

{
	"_id":"_design/carts",
	"views":{
		"all":{"map":"function(doc) { emit(null, doc) }"},
		"by_user":{"map":"function(doc) { emit(doc.uid, doc) }"}
	},
	"language":"javascript"
}

Prerequisites

You will need Leiningen 1.7.0 or above installed.

Running

To start a web server for the application, run:

lein ring server

License

Copyright © 2013 FIXME

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors