From acb5f812f604e66b737988d67a6ce075b5cd3016 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 7 Jul 2013 23:59:02 +0200 Subject: Add hostname keyword --- util.lisp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/util.lisp b/util.lisp index 4cadf53..b6fcfdb 100644 --- a/util.lisp +++ b/util.lisp @@ -1,9 +1,8 @@ (in-package #:scrumli) -(defun start-scrumli (&key - (port 8080) +(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)) + (start '#:scrumli :port port :hostname hostname)) -- cgit v1.2.3-54-g00ecf