aboutsummaryrefslogtreecommitdiffstats
path: root/scrumli.asd
diff options
context:
space:
mode:
Diffstat (limited to 'scrumli.asd')
-rw-r--r--scrumli.asd14
1 files changed, 14 insertions, 0 deletions
diff --git a/scrumli.asd b/scrumli.asd
new file mode 100644
index 0000000..083f882
--- /dev/null
+++ b/scrumli.asd
@@ -0,0 +1,14 @@
+(defpackage #:scrumli-config (:export #:*base-directory*))
+(defparameter scrumli-config:*base-directory*
+ (make-pathname :name nil :type nil :defaults *load-truename*))
+
+(asdf:defsystem #:scrumli
+ :serial t
+ :description "Scrum with Lisp"
+ :author "Tom Willemse"
+ :license "AGPLv3"
+ :depends-on (:restas :sexml :postmodern :cl-json :drakma)
+ :components ((:file "defmodule")
+ (:file "pg-datastore")
+ (:file "util")
+ (:file "scrumli")))