diff options
Diffstat (limited to 'hito.asd')
| -rw-r--r-- | hito.asd | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/hito.asd b/hito.asd new file mode 100644 index 0000000..1ef7c27 --- /dev/null +++ b/hito.asd @@ -0,0 +1,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"))))) |