Find a file
Nicholas Kariniemi 838e6497d4 Correct fetching of database values
The existing way did not work for local database for some reason. The
	existing approach tried to fetch all attributes for a given
	entity. We now specifically fetch the attributes we want for an
	entity, which is better anyway.
2015-11-17 23:01:18 -05:00
bin Update chromedriver and fix integration tests 2014-04-25 22:09:38 +03:00
csp More sync musings 2015-11-17 22:49:53 -05:00
dev Comment out user.clj to make building work 2015-06-08 23:37:30 +03:00
doc Initial commit 2013-07-24 20:39:02 +03:00
resources/public Update Om to fix production build issues 2015-07-05 10:30:21 +03:00
scripts Add script for releasing: build + deploy 2015-07-05 18:45:55 +03:00
src Correct fetching of database values 2015-11-17 23:01:18 -05:00
.gitignore Ignore Intellij IDEA files 2015-03-14 13:06:35 +02:00
project.clj Add back midje and remove unused test 2015-07-05 21:59:17 +03:00
README.md Add Datomic to README and clean up 2015-11-17 20:38:46 -05:00

Grub

Grub is a real-time synced grocery list. Mainly it's a way for me to play around with Clojure[Script] and core.async.

Install dependencies

  • Java
  • Datomic
  • Leiningen

Build for development

$ lein cljsbuild auto dev
$ lein run dev

Navigate to http://localhost:3000.

Build for production

$ lein cljsbuild once prod
$ lein run prod

Or you can run the scripts/build.sh script to get a deployment JAR.