Figwheel + nREPL + CIDER boilerplate
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
;; Something similar to this goes in project.clj: | |
;; | |
;; :profiles {:dev {:dependencies [[com.cemerick/piggieback "0.2.2"] | |
;; [figwheel-sidecar "0.5.10"]] | |
;; :source-paths ["ui_src" "dev"]}} | |
(ns user | |
(:require [figwheel-sidecar.repl-api :as ra])) | |
(defn fig-start [] (do | |
(ra/start-figwheel!) | |
(ra/cljs-repl "frontend-dev"))) ;; this should be the name of the dev profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment