From a4c73881b4a246b094dc0f99e1e1963874f8252b Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sun, 10 Dec 2023 19:39:49 +0100 Subject: [PATCH] Add comment --- sbcl-nginx.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sbcl-nginx.yml b/sbcl-nginx.yml index fd75df5..1d6221f 100644 --- a/sbcl-nginx.yml +++ b/sbcl-nginx.yml @@ -519,6 +519,10 @@ write_files: owner: 'cl:cl' defer: True content: | + ;;;; This Common Lisp script sets up a development environment by loading essential + ;;;; libraries for web development and data handling, including SBCL system + ;;;; libraries and external tools via Quicklisp. It concludes by saving the + ;;;; environment state to a core file for efficient reusability in future sessions. (mapc 'require '(sb-bsd-sockets sb-posix sb-introspect sb-cltl2 asdf)) (ql:quickload '(:hunchentoot :cl-yaml :cl-json :jonathan :spinneret :dexador :rove :vecto :woo :clsql-sqlite3 :mito :bknr.datastore :cl-project)) (save-lisp-and-die "sbcl.core-for-slime") @@ -529,7 +533,7 @@ write_files: defer: True content: | #!/bin/bash - sbcl --load /home/cl/lisp_03_load_swank_faster.lisp + sbcl --noinform --noprint --load /home/cl/lisp_03_load_swank_faster.lisp - path: /home/cl/emacs_build.sh owner: cl:cl