mmo-project/lisp/www/www.asd

31 lines
823 B
Plaintext
Raw Permalink Normal View History

2023-12-16 15:06:29 -05:00
(defsystem "www"
:version "0.1.0"
:author "zongor"
:license ""
:depends-on ("clack"
"lack"
"caveman2"
"envy"
"cl-ppcre"
"uiop"
;; for @route annotation
"cl-syntax-annot"
;; HTML Template
"djula"
;; for DB
"datafly"
"sxql"
"cl-bcrypt")
:components ((:module "src"
:components
((:file "main" :depends-on ("config" "view" "db"))
(:file "web" :depends-on ("view"))
(:file "view" :depends-on ("config"))
(:file "db" :depends-on ("config"))
(:file "config"))))
:description ""
:in-order-to ((test-op (test-op "www-test"))))