-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththethirdofmay.asd
More file actions
43 lines (38 loc) · 1.26 KB
/
thethirdofmay.asd
File metadata and controls
43 lines (38 loc) · 1.26 KB
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
(in-package :cl-user)
(defpackage thethirdofmay-asd
(:use :cl :asdf))
(in-package :thethirdofmay-asd)
(defsystem thethirdofmay
:version "0.1"
:author "takahashi"
:license ""
:depends-on (:clack
:lack
:caveman2
:envy
:cl-ppcre
:uiop
;; markdown engine
:cl-markdown
;; for @route annotation
:cl-syntax-annot
;; HTML Template
:djula
;; date parsing
:net-telent-date
:metatilities
;; for DB
:datafly
:sxql)
:components ((:module "src"
:components
((:file "model" :depends-on ("config" "db"))
(:file "controller" :depends-on ("config" "db"))
(:file "techblog_controller" :depends-on ("config" "db"))
(: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 (load-op thethirdofmay-test))))