mount/dev/dev.clj

50 lines
1.4 KiB
Clojure
Raw Normal View History

2015-10-20 01:33:56 +00:00
(ns dev
"Tools for interactive development with the REPL. This file should
not be included in a production build of the application."
2015-10-20 01:33:56 +00:00
(:require [clojure.java.io :as io]
[clojure.java.javadoc :refer [javadoc]]
[clojure.pprint :refer [pprint]]
[clojure.reflect :refer [reflect]]
[clojure.repl :refer [apropos dir doc find-doc pst source]]
[clojure.set :as set]
[clojure.string :as str]
[clojure.test :as test]
[clojure.tools.namespace.repl :as tn]
2015-11-17 05:09:45 +00:00
[mount.core :as mount]
[app.utils.logging :refer [with-logging-status]]
2015-12-16 23:16:17 +00:00
[app.www]
[app.example]
[app.nyse :refer [create-nyse-schema find-orders add-order]])) ;; <<<< replace this your "app" namespace(s) you want to be available at REPL time
2015-10-20 01:33:56 +00:00
(defn start []
(with-logging-status)
(mount/start #'app.conf/config
2015-12-16 23:16:17 +00:00
#'app.db/conn
#'app.www/nyse-app
#'app.example/nrepl)) ;; example on how to start app with certain states
2015-10-20 01:33:56 +00:00
(defn stop []
2015-10-26 02:27:09 +00:00
(mount/stop))
2015-10-20 01:33:56 +00:00
(defn refresh []
(stop)
(tn/refresh))
(defn refresh-all []
(stop)
(tn/refresh-all))
2015-10-20 01:33:56 +00:00
(defn go
2015-10-25 18:41:24 +00:00
"starts all states defined by defstate"
2015-10-20 01:33:56 +00:00
[]
(start)
2015-10-20 01:33:56 +00:00
:ready)
(defn reset
2015-10-25 18:41:24 +00:00
"stops all states defined by defstate, reloads modified source files, and restarts the states"
2015-10-20 01:33:56 +00:00
[]
(stop)
(tn/refresh :after 'dev/go))
2015-12-09 03:40:23 +00:00
(mount/in-clj-mode)