aboutsummaryrefslogtreecommitdiffstats
path: root/scrumli.asd
blob: 473ba007e16bf42ebb0fddb9399c7501f9d19b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(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
                       :closure-template :md5)
  :defsystem-depends-on (:closure-template)
  :components ((:closure-template "templates/scrumli")
               (:file "defmodule")
               (:file "pg-datastore")
               (:file "util")
               (:file "scrumli")))