Find a file
2015-12-11 14:48:20 +02:00
bin Remove unused specljs file 2015-12-11 10:07:51 +02: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 Make datomic script more generic 2015-12-11 10:24:37 +02:00
spec CSP: Correct spec to actually test for n processes (not 3) 2015-12-11 14:48:20 +02:00
src Add end-to-end test for production (with manual verification) 2015-12-11 00:08:04 +02:00
.gitignore Ignore Intellij IDEA files 2015-03-14 13:06:35 +02:00
project.clj Add lein midje as an explicit dev dependency 2015-12-11 10:47:08 +02:00
README.md Make Datomic setup instructions more explicit 2015-12-11 10:24:42 +02: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

    • Set environment variables:

      DATOMIC_HOME=<Datomic directory>

      DATOMIC_TRANSACTOR_PROPERTIES_DIR=<directory with transactor.properties file>

    • Add Datomic credentials to ~/.lein/credentials.clj.gpg per Datomic instructions.

  • Leiningen

Build for development

$ ./scripts/start_datomic
$ 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.