start-slynk.lisp (692B)
1 ;;; This file is intended to be loaded by an implementation to 2 ;;; get a running slynk server 3 ;;; e.g. sbcl --load start-slynk.lisp 4 ;;; 5 ;;; Default port is 4005 6 7 ;;; For additional slynk-side configurations see 8 ;;; 6.2 section of the Slime user manual. 9 10 (load (make-pathname :name "slynk-loader" :type "lisp" 11 :defaults *load-truename*)) 12 13 (slynk-loader:init 14 :delete nil ; delete any existing SLYNK packages 15 :reload nil) ; reload SLYNK, even if the SLYNK package already exists 16 17 18 (slynk:create-server :port 4005 19 ;; if non-nil the connection won't be closed 20 ;; after connecting 21 :dont-close t)