get config and is_tech working

This commit is contained in:
Travis Shears 2025-07-16 20:50:02 +02:00
parent 77ae02c8b8
commit 8e0d00035a
5 changed files with 109 additions and 0 deletions

28
deps.edn Normal file
View file

@ -0,0 +1,28 @@
{:paths ["src"]
:deps {clj-http/clj-http {:mvn/version "3.13.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
cheshire/cheshire {:mvn/version "6.0.0"}
;; metosin/muuntaja {:mvn/version "0.6.11"}
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"]}}}