-
Notifications
You must be signed in to change notification settings - Fork 20
/
turtl.asd
77 lines (76 loc) · 2.18 KB
/
turtl.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
(asdf:defsystem turtl
:author "Lyon Bros. Enterprises, LLC <[email protected]>"
:license "AGPLv3"
:version "0.1.0"
:description "An encrypted note/bookmark/data organizer."
:depends-on (#:blackbird
#:cl-async
#:wookie
#:cl-rethinkdb
#:cl-hash-util
#:cl-ppcre
#:flexi-streams
#:cl-fad
#:jonathan
#:cl-mongo-id
#:cl-base64
#:drakma-async
#:local-time
#:ironclad
#:secure-random
#:bordeaux-threads
#:trivial-backtrace
#:xmls
#:cl-smtp
#:vom)
:components
((:file "package")
(:file "config/config" :depends-on ("package"))
(:file "config/schema" :depends-on ("config/config"))
(:module lib
:depends-on ("package" "config/config" "config/schema")
:serial t
:components
((:file "util")
(:file "validation")
(:file "crypto")
(:file "s3")))
(:file "crypto" :depends-on (lib "config/config"))
(:file "errors" :depends-on (lib "config/config" "crypto"))
(:file "cron" :depends-on (lib "config/config"))
(:module models
:depends-on (lib "errors" "crypto" "package" "config/schema")
:serial t
:components
((:file "schema")
(:file "users")
(:file "keychain")
(:file "email")
(:file "personas")
(:file "notes")
(:file "boards")
(:file "invites")
(:file "profile")
(:file "sync")
(:file "log")
(:file "admin")
(:file "analytics")
(:file "feedback")
(:file "promo")
(:file "cla")))
(:file "init" :depends-on (lib "crypto" "errors" "cron" "config/schema" models))
(:module controllers
:depends-on ("init" "errors" lib models "package")
:serial t
:components
((:file "admin")
(:file "app")
(:file "sharing")
(:file "notes")
(:file "personas")
(:file "sync")
(:file "users")
(:file "feedback")
(:file "log")))
(:file "routes" :depends-on (lib "init" controllers "crypto" "errors"))
(:file "init-thread" :depends-on (lib "init" "routes"))))