forked from dimitri/pgcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pgcharts.asd
70 lines (63 loc) · 3.28 KB
/
pgcharts.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
;;;; pgcharts.asd
(asdf:defsystem #:pgcharts
:serial t
:description "Repository of PostgreSQL Extensions"
:author "Dimitri Fontaine <[email protected]>"
:license "The PostgreSQL Licence"
:depends-on (#:uiop ; host system integration
#:postmodern ; PostgreSQL protocol implementation
#:simple-date ; Handling of pgsql date formats
#:esrap ; parser generator
#:py-configparser ; Read old-style INI config files
#:split-sequence ; split strings
#:cl-ppcre ; Regular Expressions
#:alexandria ; Some utilities
#:hunchentoot ; http server
#:yason ; JSON routines
#:closer-mop ; introspection
#:daemon ; run the repo server in the background
#:cl-who ; HTML production from lisp code
#:trivial-backtrace ; Produces backtraces
#:drakma ; HTTP client, to check server status
#:graph ; Find SQL model upgrade paths
)
:components
((:module "lib"
:components
((:file "simple-routes")))
(:module "src"
:depends-on ("lib")
:components
((:file "package")
(:module utils
:depends-on ("package")
:components ((:file "dburi")
(:file "cache")
(:file "cli-parser")
(:file "read-sql-files")))
(:module sql
:depends-on ("package" "utils")
:components ((:file "model-update")))
(:file "config" :depends-on ("package" "utils"))
(:file "model" :depends-on ("package" "utils" "sql"))
;; frontend
(:file "resources" :depends-on ("package" "utils"))
(:file "front-tools" :depends-on ("package" "utils"))
(:file "front-db" :depends-on ("package" "utils" "front-tools"))
(:file "front-main" :depends-on ("package" "utils" "front-tools"))
(:file "front-query" :depends-on ("package" "utils" "front-tools"))
(:file "front-notebook" :depends-on ("package" "utils" "front-tools"))
(:file "front-raw-query" :depends-on ("package"
"utils"
"front-tools"
"front-query"))
;; http server control and main routing
(:file "server" :depends-on ("package"
"utils"
"front-tools"
"front-main"
"front-db"
"front-query"
"front-notebook"))
;; main entry point for the binary (command line)
(:file "pgcharts" :depends-on ("package" "utils"))))))