switch backend to clojure

This commit is contained in:
Travis Shears 2026-04-16 12:04:23 +02:00
parent 99f73315b3
commit 09bf48481a
Signed by: travisshears
GPG key ID: CB9BF1910F3F7469
11 changed files with 228 additions and 159 deletions

23
backend/deps.edn Normal file
View file

@ -0,0 +1,23 @@
{:paths ["src"]
:deps { ;; db
com.datomic/local {:mvn/version "1.0.291"}
;; logging
com.taoensso/telemere {:mvn/version "1.0.0"}
;; environment variables
environ/environ {:mvn/version "1.2.0"}
;; json / schema validation
metosin/malli {:mvn/version "0.18.0"}
metosin/muuntaja {:mvn/version "0.6.11"}
;; networking - UDP/TCP/HTTP streaming
aleph/aleph {:mvn/version "0.9.7"}
org.clj-commons/byte-streams {:mvn/version "0.3.4"}
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}}}