@ -42,7 +42,7 @@ When started via its `main` method, as is the uberjar case, an nREPL server is s
To connect via the command line, use the following command:
```
clj -Sdeps '{:deps {nrepl {:mvn/version "0.7.0"}}}' -m nrepl.cmdline --connect --host host --port port
clj -Sdeps '{:deps {nrepl/nrepl {:mvn/version "0.7.0"}}}' -m nrepl.cmdline --connect --host host --port port
### "Architecture"
@ -24,7 +24,7 @@
c.last_migration = ''")
(neo4j/defquery merge-config
"UPDATE (c:dbconfig)
"MATCH (c:dbconfig)
SET c.last_migration = {now},
c.db_version = {version}")
@ -42,7 +42,7 @@
[:meta {:charset "utf-8"}]
[:meta {:name "viewport"
:content "width=device-width,initial-scale=1,shrink-to-fit=no"}]
[:title (str "wan ijo" (when title (str " - " title)))]
[:title (h (str (when title (str title " - ")) "wanijo"))]
(include-css "/css/app.css")
(when devmode? (include-css "/css/devmode.css"))
(include-js "/js/scripts.js")
@ -11,6 +11,7 @@
(defn edit [instance form form-data schemas req]
(view/layout
:request req
:title (str (:name instance) " - " (-> instance :schema :name))
:content
[[:h1
(h (-> instance :schema :name))
@ -10,6 +10,7 @@
(defn instances [schema instances new-form req]
:title (:name schema)
[[:h1 "All Instances of schema "
[:span.schema-title__name (h (:name schema))]]
@ -8,6 +8,7 @@
(defn link-selection [instance schema form req]
[:small "Link " (-> instance :schema :name h) " "]
@ -39,6 +39,7 @@
(defn show [instance schemas req]
(if (:starred instance)