Merge release Beta 1 into stable #21

Merged
Felisp merged 35 commits from dev into stable 2024-08-13 17:48:09 +02:00
Showing only changes of commit d1666da946 - Show all commits

View file

@ -75,7 +75,7 @@
"Entry point, starts webserver"
[& args]
;; Todo: Think of a way to start repeated download for every catalog efficiently
(let [config (get-some-config args)])
(let [config (get-some-config args)]
(println args)
(System/exit 0)
(set-interval (fn []
@ -83,7 +83,7 @@
(watcher/update-thread-cache! (:target config) (:starting-page config)))
(* 1000 (:refresh-delay config)))
(jetty/run-jetty (rp/wrap-params feed/http-handler) {:port (:port CONFIG-DEFAULT)
:join? true}))
:join? true})))
;; Docs: https://github.com/ring-clojure/ring/wiki/Getting-Started
(defn repl-main