-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlike-certain-board.asd
61 lines (48 loc) · 1.58 KB
/
like-certain-board.asd
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
(defsystem "like-certain-board"
:version "0.1.0"
:author ""
:license ""
:depends-on ("clack"
"lack"
"caveman2"
"envy"
"cl-ppcre"
"uiop"
"quri"
"cffi"
"cl-json"
;; for @route annotation
"cl-syntax-annot"
;; HTML Template
"djula"
"cl-markup"
;; for DB
"datafly"
"sxql"
"cl-dbi"
;; otherwise
"alexandria"
;; hash and crypt algorithm
"ironclad"
;; session
"lack-session-store-dbi"
"lack-middleware-csrf"
"lack-middleware-session"
;; utility
"cl-fad"
;; board string generator
"generate-like-certain-board-strings"
"trivial-shell"
"cl-string-generator"
)
:components ((:module "src"
:components
((:file "main" :depends-on ("config" "view" "db"))
(:file "web" :depends-on ("view" "webfunctions" "utils"))
(:file "view" :depends-on ("config" "db" "utils"))
(:file "db" :depends-on ("config"))
(:file "config")
(:file "webfunctions" :depends-on ("utils" "db"))
(:file "utils" :depends-on ("config")))))
:description ""
:in-order-to ((test-op (test-op "like-certain-board-test"))))