Skip to content

Instantly share code, notes, and snippets.

@matstani
Created January 8, 2016 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matstani/4db238e1db767ca8de9b to your computer and use it in GitHub Desktop.
Save matstani/4db238e1db767ca8de9b to your computer and use it in GitHub Desktop.
figwheel in remote server.
(defproject flappy-bird-demo "0.1.1-SNAPSHOT"
:description "The original figwheel flappybird demo"
:url "http://rigsomelight.com/2014/05/01/interactive-programming-flappy-bird-clojurescript.html"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.170"]
[org.clojure/core.async "0.2.371"]
[cljsjs/react "0.13.3-1"]
[sablono "0.4.0"]]
:plugins [[lein-cljsbuild "1.1.0"]
[lein-figwheel "0.5.0-SNAPSHOT"]]
:clean-targets ^{:protect false} ["resources/public/js/out"
"resources/public/js/flappy_bird_demo.js"
:target-path]
:source-paths ["src"]
:cljsbuild {
:builds [{:id "flappy-bird-demo"
:source-paths ["src"]
:figwheel {:websocket-host :js-client-host}
:compiler {
:main flappy-bird-demo.core
:asset-path "js/out"
:output-to "resources/public/js/flappy_bird_demo.js"
:output-dir "resources/public/js/out"
:source-map-timestamp true}}]}
:figwheel { :css-dirs ["resources/public/css"]
:open-file-command "emacsclient"
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment