Remove bulma, add bun, tailwindcss, daisyui

This commit is contained in:
Akira Tempaku 2024-06-16 14:13:16 +09:00
commit 7040fb5173
9 changed files with 46 additions and 4 deletions

View file

@ -10,13 +10,19 @@
#:update))
(in-package #:hp)
(defparameter *watch-process* nil)
(defparameter *app* (jg:make-app :address "localhost"
:port env:*port*))
(defun start ()
(when (env:dev-mode-p)
(setf *watch-process* (uiop:launch-program "make watch")))
(jg:start *app*))
(defun stop ()
(when (env:dev-mode-p)
(uiop:terminate-process *watch-process*))
(jg:stop *app*))
(defun setup ()