Created
October 1, 2012 04:31
-
-
Save ithayer/3809477 to your computer and use it in GitHub Desktop.
Code for Minimal ClojureScript Project Post
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Install dependencies | |
lein deps | |
;; Build my ClojureScript. | |
lein cljsbuild once | |
;; Start me listening on port 8888. | |
lein run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; 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