Skip to content

Instantly share code, notes, and snippets.

@ithayer
Created October 1, 2012 04:31
Show Gist options
  • Save ithayer/3809477 to your computer and use it in GitHub Desktop.
Save ithayer/3809477 to your computer and use it in GitHub Desktop.
Code for Minimal ClojureScript Project Post
;; Install dependencies
lein deps
;; Build my ClojureScript.
lein cljsbuild once
;; Start me listening on port 8888.
lein run
;; All in one command
git clone git://github.com/ithayer/clojurescript-ohpointone.git && \
cd clojurescript-ohpointone && \
lein deps && \
lein cljsbuild once && \
lein run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment