Initial Kit project with PostgreSQL, HTMX, Hiccup, and Tailwind
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
(ns pmagnus.elprice.dev-middleware)
|
||||
|
||||
(defn wrap-dev [handler _opts]
|
||||
(-> handler
|
||||
))
|
||||
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
(ns pmagnus.elprice.env
|
||||
(:require
|
||||
[clojure.tools.logging :as log]
|
||||
[pmagnus.elprice.dev-middleware :refer [wrap-dev]]))
|
||||
|
||||
(def defaults
|
||||
{:init (fn []
|
||||
(log/info "\n-=[elprice starting using the development or test profile]=-"))
|
||||
:start (fn []
|
||||
(log/info "\n-=[elprice started successfully using the development or test profile]=-"))
|
||||
:stop (fn []
|
||||
(log/info "\n-=[elprice has shut down successfully]=-"))
|
||||
:middleware wrap-dev
|
||||
:opts {:profile :dev}})
|
||||
Reference in New Issue
Block a user