Tutorial 28 - Minimal CLOG Builder App

This commit is contained in:
David Botton 2022-01-27 22:31:30 -05:00
parent 2d0e2ab6c6
commit d3cabdc183
18 changed files with 20358 additions and 14 deletions

View file

@ -1255,9 +1255,11 @@ z.html()"
""))
(run body)))
(defun clog-builder ()
(defun clog-builder (&key static-root)
"Start clog-builder."
(initialize nil)
(if static-root
(initialize nil :static-root static-root)
(initialize nil))
(set-on-new-window 'on-new-builder :path "/builder")
(set-on-new-window 'on-attach-builder-page :path "/builder-page")
(open-browser :url "http://127.0.0.1:8080/builder"))