summaryrefslogtreecommitdiff
path: root/dnd.lisp
diff options
context:
space:
mode:
authorGrant Shangreaux <shoshin@cicadas.surf>2023-01-24 14:02:27 -0600
committerGrant Shangreaux <shoshin@cicadas.surf>2023-01-24 14:02:27 -0600
commit1d40a541e41b37d03446b471ef8c072b005ee24e (patch)
tree30d5a0951c25a2376f562a521cf72f2cf08f544f /dnd.lisp
parent7bbe9edc81e11aaee184135224712198b2435d87 (diff)
Add: build.lisp with running swank server
Diffstat (limited to 'dnd.lisp')
-rw-r--r--dnd.lisp5
1 files changed, 5 insertions, 0 deletions
diff --git a/dnd.lisp b/dnd.lisp
index 9cb4702..7f7dc77 100644
--- a/dnd.lisp
+++ b/dnd.lisp
@@ -10,3 +10,8 @@
(setf *dnd-arena* (lzb:create-server))
(lzb:install-app *dnd-arena* (lzb:app 'dnd))
(lzb:start-server *dnd-arena*))
+
+(defun boot ()
+ (swank:create-server :port 9876 :dont-close t)
+ (conjure-arena)
+ (loop (sleep 1)))