blob: 1ef7c27fe79da1a12cdf94f8dfb58cf429ccc9cb (
plain)
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
|
(defsystem "hito"
:version "0.1.0"
:author "blendux"
:license "MIT"
:description "HITO - High Intensity Tracker Online. A prescriptive training system encoding Mike Mentzer's Heavy Duty methodology."
:depends-on ("hunchentoot"
"mito"
"cl-dbi"
"dbd-sqlite3"
"djula"
"cl-json"
"local-time")
:serial t
:components ((:module "src"
:components ((:file "package")
(:file "models")
(:file "program")
(:file "progression")
(:file "recovery")
(:file "routes")
(:file "app"))))
:in-order-to ((test-op (test-op "hito/tests"))))
(defsystem "hito/tests"
:depends-on ("hito" "fiveam")
:components ((:module "tests"
:components ((:file "suite")))))
|