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

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