fukamachi / caveman

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

Document starting an application #50

Closed anthonyshull closed 9 years ago

anthonyshull commented 9 years ago

I can't figure out how to start an application after creating it. If I run:

%> (ql:quickload :caveman2)
%> (caveman2:make-project ...)

I can then run:

%> (ql:quickload :project-name)
%> (project-name:start :port 8080)

But, if I exit the REPL, I have no idea how to re-start the application. My guess is that make-project returns a reference to the project which allows me to load it. If that process could be added to the documentation, it would help me (and other people wanting to play with caveman) out.

kennymalac commented 9 years ago

Was wondering how to get going and started as well

fukamachi commented 9 years ago

See http://www.quicklisp.org/beta/faq.html#local-project.

anthonyshull commented 9 years ago

Thanks!