Finish port to asdf and make webserer template files

This commit is contained in:
2024-09-04 03:49:47 -07:00
parent b09948d77c
commit d85f58adf2
8 changed files with 252 additions and 149 deletions

View File

@ -17,3 +17,13 @@
:executable t
:save-runtime-options t
:toplevel (intern "TOPLEVEL" :truth-table/cli)))
(defun web ()
"Build the web server executable."
(asdf:load-system :truth-table/web)
(require :truth-table/web)
(sb-ext:save-lisp-and-die
"truth-table-webserver"
:executable t
:save-runtime-options t
:toplevel (intern "TOPLEVEL" :truth-table/web)))