aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lazybones.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lazybones.lisp b/lazybones.lisp
index 8f3cc0c..318ae95 100644
--- a/lazybones.lisp
+++ b/lazybones.lisp
@@ -271,8 +271,8 @@ for the request's path."
-(defun start ()
- (setf *handler* (clack:clackup #'main-handler)))
+(defun start (&key (port 5000))
+ (setf *handler* (clack:clackup #'main-handler :port port)))
(defun stop ()
(clack:stop *handler*))