make server autostart on repl entry
Deploy ${{ gitea.repository }} / build (push) Successful in 2s

This commit is contained in:
2025-10-05 07:52:27 -09:00
parent 3f9964a3c7
commit 1cfda6b4f0
2 changed files with 11 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
(ns user
(:require
[ajet.www.core :refer [make-server]]))
(def server (make-server {}))
(comment
server
(. server stop)
(. server start))