-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-twitter-clone.asd
33 lines (30 loc) · 955 Bytes
/
cl-twitter-clone.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
(defsystem "cl-twitter-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"
"websocket-driver"
"cl-json"
"local-time"
"cl-who")
: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-twitter-clone-test"))))