geocsv/env/dev/clj/user.clj
2020-01-27 17:31:29 +00:00

34 lines
729 B
Clojure

(ns user
"Userspace functions you can run by default in your local REPL."
(:require
[geocsv.config :refer [env]]
[clojure.pprint]
[clojure.spec.alpha :as s]
[expound.alpha :as expound]
[mount.core :as mount]
[geocsv.figwheel :refer [start-fw stop-fw cljs]]
[geocsv.core :refer [start-app]]))
(alter-var-root #'s/*explain-out* (constantly expound/printer))
(add-tap (bound-fn* clojure.pprint/pprint))
(defn start
"Starts application.
You'll usually want to run this on startup."
[]
(mount/start-without #'geocsv.core/repl-server))
(defn stop
"Stops application."
[]
(mount/stop-except #'geocsv.core/repl-server))
(defn restart
"Restarts application."
[]
(stop)
(start))