-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcl-trello-clone.asd
More file actions
29 lines (26 loc) · 842 Bytes
/
Copy pathcl-trello-clone.asd
File metadata and controls
29 lines (26 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(defsystem "cl-trello-clone"
:version "0.1.0"
:author "Rajasegar Chandran"
:license "MIT"
:depends-on ("clack"
"lack"
"caveman2"
"envy"
"cl-ppcre"
"uiop"
;; for @route annotation
"cl-syntax-annot"
;; HTML Template
"djula"
;; for DB
"datafly"
"sxql")
: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 "cl-trello-clone-test"))))