Kit framework with Undertow, Reitit routing, Hiccup + HTMX templating, Tailwind CSS v4, PostgreSQL (empty database), and mobile-first index page. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
379 B
Clojure
11 lines
379 B
Clojure
(ns pmagnus.btcprice.env
|
|
(:require
|
|
[clojure.tools.logging :as log]))
|
|
|
|
(def defaults
|
|
{:init (fn [] (log/info "\n-=[btcprice starting]=-"))
|
|
:start (fn [] (log/info "\n-=[btcprice started successfully]=-"))
|
|
:stop (fn [] (log/info "\n-=[btcprice has shut down successfully]=-"))
|
|
:middleware (fn [handler _] handler)
|
|
:opts {:profile :prod}})
|