-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from kongeor/add-re-frame
Add re frame
- Loading branch information
Showing
27 changed files
with
1,681 additions
and
314 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,9 @@ pom.xml.asc | |
*.iml | ||
/.idea | ||
|
||
run.sh | ||
run.sh | ||
|
||
/resources/public/js | ||
/resources/public/test | ||
/.shadow-cljs | ||
node_modules |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,22 @@ | ||
(ns user | ||
(:require | ||
[system.repl :refer [system set-init! start stop reset]] | ||
[kino.systems :refer [base-system]])) | ||
(:require [integrant.repl :as ig-repl] | ||
[clojure.tools.namespace.repl :refer [set-refresh-dirs]] | ||
[kino.system :as system])) | ||
|
||
(set-init! #'base-system) | ||
; type (start) in the repl to start your development-time system. | ||
#_(set-init! #'base-system) | ||
; type (start) in the repl to start your development-time system. | ||
|
||
(set-refresh-dirs "src") | ||
|
||
(ig-repl/set-prep! (fn [] system/config)) | ||
|
||
(def go ig-repl/go) | ||
(def halt ig-repl/halt) | ||
(def reset ig-repl/reset) | ||
(def reset-all ig-repl/reset-all) | ||
|
||
(comment | ||
(go) | ||
(halt) | ||
(reset) | ||
(reset-all)) |
Oops, something went wrong.