46 lines
1.8 KiB
Clojure
46 lines
1.8 KiB
Clojure
{:paths ["src"]
|
|
:deps {;; api
|
|
ring/ring-core {:mvn/version "1.13.0"}
|
|
ring/ring-jetty-adapter {:mvn/version "1.13.0"}
|
|
org.slf4j/slf4j-simple {:mvn/version "2.0.16"}
|
|
|
|
;; db
|
|
com.xtdb/xtdb-api {:mvn/version "2.0.0-beta9"}
|
|
com.github.seancorfield/next.jdbc {:mvn/version "1.3.1002"}
|
|
org.postgresql/postgresql {:mvn/version "42.7.6"}
|
|
frontmatter/frontmatter {:mvn/version "0.0.1"}
|
|
;; logging
|
|
com.taoensso/telemere {:mvn/version "1.0.0"}
|
|
|
|
;; environment variables
|
|
environ/environ {:mvn/version "1.2.0"}
|
|
|
|
;; schema validation
|
|
metosin/malli {:mvn/version "0.18.0"}
|
|
|
|
;; json decoding
|
|
metosin/muuntaja {:mvn/version "0.6.11"}
|
|
|
|
;; routing:
|
|
metosin/reitit {:mvn/version "0.9.1"}
|
|
|
|
;; convenient package of "default" middleware:
|
|
;; ring/ring-defaults {:mvn/version "0.5.0"}
|
|
|
|
org.clojure/clojure {:mvn/version "1.12.1"}}
|
|
:aliases
|
|
{;; Run with clj -T:build function-in-build
|
|
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.10.9" :git/sha "e405aac"}}
|
|
:ns-default build}}}
|
|
|
|
;; :aliases
|
|
;; {:dev {:extra-deps {com.biffweb/tasks {:git/url "https://github.com/jacobobryant/biff", :git/sha "1570ccc", :git/tag "v1.8.29", :deps/root "libs/tasks"}}
|
|
;; :extra-paths ["dev" "test"]
|
|
;; :jvm-opts ["-XX:-OmitStackTraceInFastThrow"
|
|
;; "-XX:+CrashOnOutOfMemoryError"
|
|
;; "-Dbiff.env.BIFF_PROFILE=dev"]
|
|
;; :main-opts ["-m" "com.biffweb.task-runner" "tasks/tasks"]}
|
|
;; :prod {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"
|
|
;; "-XX:+CrashOnOutOfMemoryError"
|
|
;; "-Dbiff.env.BIFF_PROFILE=prod"]
|
|
;; :main-opts ["-m" "snippets"]}}}
|