diff options
| author | 2013-07-07 23:59:02 +0200 | |
|---|---|---|
| committer | 2013-07-07 23:59:02 +0200 | |
| commit | acb5f812f604e66b737988d67a6ce075b5cd3016 (patch) | |
| tree | 97237164cb904ee993ac5b178b486086235a678a | |
| parent | a322d9802ca0246c7977ced54952ef34d3fb2d16 (diff) | |
| download | scrumli-acb5f812f604e66b737988d67a6ce075b5cd3016.tar.gz scrumli-acb5f812f604e66b737988d67a6ce075b5cd3016.zip | |
Add hostname keyword
| -rw-r--r-- | util.lisp | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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)) |
