aboutsummaryrefslogtreecommitdiffstats
path: root/scrumli.asd
blob: 083f8820305f361e89c6c980002c9379d5e6b64b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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")))