fukamachi / caveman

Lightweight web application framework for Common Lisp.
http://8arrow.org/caveman/
775 stars 63 forks source link

Add new package to the project #123

Open asarch opened 3 years ago

asarch commented 3 years ago

How would you add the package 'foo' stored at the 'bar.lisp' file in order you can safely use it in web.lisp functions?

asarch commented 3 years ago

I one way I found was to load the package actually before you load the project:

(load #P"src/mypackage.lisp")

and then:

(ql:quickload :myproject)
fukamachi commented 3 years ago

Seems not specific for Caveman, but for Common Lisp? I don't get well what you mean yet, but it would be solved when you look into ASDF and cl:defpackage.