systemd: what's in your .sbclrc? #143
-
Hello, In this tutorial: https://github.com/rabbibotton/clog/blob/main/WEBSERVER.md you tell SBCL to read your .sbclrc. Can we see what you initialize in there? I think it has its importance to require asdf, load quicklisp and more. Context: I'm currently having an issue starting a CL web service with systemd (but not CLOG). Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Just the quickslip additons ;;; The following lines added by ql:add-to-init-file: |
Beta Was this translation helpful? Give feedback.
-
I had to And as says your tutorial, it is important to
as in https://lispcookbook.github.io/cl-cookbook/scripting.html#for-web-apps Thanks for the forum! |
Beta Was this translation helpful? Give feedback.
Just the quickslip additons
;;; The following lines added by ql:add-to-init-file:
#-quicklisp
(let ((quicklisp-init (merge-pathnames ".quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))