aboutsummaryrefslogtreecommitdiffstats
path: root/scrumli.asd
blob: 87d124ac88827d69c418c08953128762eb426cdd (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)
  :defsystem-depends-on (:closure-template)
  :components ((:closure-template "templates/scrumli")
               (:file "defmodule")
               (:file "pg-datastore")
               (:file "util")
               (:file "scrumli")))