aboutsummaryrefslogtreecommitdiffstats
path: root/util.lisp
blob: b6fcfdb813dfc21b195e9387d69912f965ca7724 (plain)
1
2
3
4
5
6
7
8
(in-package #:scrumli)

(defun start-scrumli (&key hostname (port 8080)
                        (datastore 'scrumli.pg-datastore:pg-datastore)
                        datastore-init)
  (setf *datastore* (apply #'make-instance datastore datastore-init))
  (init)
  (start '#:scrumli :port port :hostname hostname))