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