cl-chat-web/live-chat.asd

28 lines
973 B
Plaintext
Raw Normal View History

2024-10-11 16:45:22 -04:00
;;;; live-chat.asd
(asdf:defsystem #:live-chat
:description "Twitch.TV-like live chat on the web. Uses HTMX to poll for messages."
:author "Bubblegumdrop <staticsunn@gmail.com>"
:license "WTFPL 2+"
:version "0.1.0"
:defsystem-depends-on (:deploy) ;; so you need to quickload deploy sometime before.
:build-operation "deploy-op" ;; instead of program-op for asdf:make
:build-pathname "live-chat"
:entry-point "live-chat::main"
:depends-on (#:bordeaux-threads
#:cl-dbi
#:cl-who
#:clack
#:lack
#:ningle
#:slynk
;; WebSocket chat server backend
#:websocket-driver)
2024-10-11 16:45:22 -04:00
:components ((:file "package")
(:file "live-chat-db")
(:file "live-chat-ui")
(:file "live-chat-routes")
2024-10-11 16:45:22 -04:00
(:file "live-chat-cgi")
(:file "live-chat-ws")
2024-10-11 16:45:22 -04:00
(:file "live-chat-main")))