-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmoney-thing.asd
40 lines (39 loc) · 1.3 KB
/
money-thing.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
;; -*-lisp-*-
;;;; money-thing.asd
(asdf:defsystem #:money-thing
:description "A system to facilitate financial analysis of stocks,
and stock trading positions."
:author "Brian O'Reilly <[email protected]>"
:license "GNU General Public License v3 or any later version."
;; :class :package-inferred-system
:serial t
:depends-on (#:alexandria
#:cl-json-pointer
#:cl-ppcre
#:cl-strings
#:quri
#:dexador
#:jonathan
#:jsown
#:local-time
#:mcclim
#:rutils
#:vellum
#:simple-date
#:simple-date/postgres-glue
#:postmodern
;; yesql is super interesting, but didn't seem to work yet.
;; #:cl-yesql
;; #:cl-yesql/postmodern
#:net.didierverna.clon)
:pathname "./"
:components ((:static-file "money-thing.asd")
(:file "app-utils")
(:file "packages")
(:file "config")
(:file "money-thing")
(:module :data-access
:components ((:file "yfin")
(:file "finnhub-io")))
(:module :db
:components ((:file "db")))))