aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-07-07 23:59:02 +0200
committerGravatar Tom Willemse2013-07-07 23:59:02 +0200
commitacb5f812f604e66b737988d67a6ce075b5cd3016 (patch)
tree97237164cb904ee993ac5b178b486086235a678a
parenta322d9802ca0246c7977ced54952ef34d3fb2d16 (diff)
downloadscrumli-acb5f812f604e66b737988d67a6ce075b5cd3016.tar.gz
scrumli-acb5f812f604e66b737988d67a6ce075b5cd3016.zip
Add hostname keyword
-rw-r--r--util.lisp5
1 files 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))