cl-chat-web/live-chat.asd

29 lines
1023 B
Plaintext
Raw Permalink 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 and WebSockets to poll for messages."
2024-10-11 16:45:22 -04:00
: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
#:com.inuoe.jzon
#: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")
;; (:file "live-chat-cgi")
(:file "live-chat-ws")
2024-10-11 16:45:22 -04:00
(:file "live-chat-main")))