Next: Create command-line Program, Previous: Reorganize, Up: Making a small Lisp project with quickproject and Quicklisp [Contents][Index]
a) starting Lisp,
b) loading the project with ql:quickload, and
c) running a function to start Hunchentoot with the swatchbade handler in
effect.
(defpackage #:swatchblade
(:use #:cl)
(:export #:start-web-server)
(:shadowing-import-from #:vecto
#:with-canvas
#:rounded-rectangle
#:set-rgb-fill
#:save-png-stream))
* (ql:quickload "swatchblade") loading output * (swatchblade:start-web-server :port 8080) Server started on port 8080.
quickproject:make-project, e.g.:
(quickproject:make-project "~/src/lisp/whimsytron/"
:depends-on '(swatchblade))