Update of /project/lisppaste/cvsroot/lisppaste2 In directory common-lisp.net:/tmp/cvs-serv4324
Modified Files: README.lisp Log Message: Updated README.lisp with more information on dependencies
Date: Tue Feb 3 22:03:10 2004 Author: bmastenbrook
Index: lisppaste2/README.lisp diff -u lisppaste2/README.lisp:1.3 lisppaste2/README.lisp:1.4 --- lisppaste2/README.lisp:1.3 Sat Jan 17 13:34:37 2004 +++ lisppaste2/README.lisp Tue Feb 3 22:03:09 2004 @@ -1,21 +1,33 @@ -;;;; $Id: README.lisp,v 1.3 2004/01/17 18:34:37 bmastenbrook Exp $ +;;;; $Id: README.lisp,v 1.4 2004/02/04 03:03:09 bmastenbrook Exp $ ;;;; $Source: /project/lisppaste/cvsroot/lisppaste2/README.lisp,v $
;;;; See the LICENSE file for licensing information.
;;; README for lisppaste: + +;;; lisppaste requires a recent SBCL 0.8, araneida 0.80, and cl-irc +;;; 0.5. Once SBCL is installed, installing araneida and cl-irc is +;;; quite simple: +;;; +;;; (require :asdf) (require :asdf-install) +;;; (asdf-install:install :araneida) +;;; ; possibly selecting a restart to bypass GPG +;;; (asdf-install:install :cl-irc) ;;; ;;; lisppaste is pretty easy to get running. First, edit the top few -;;; lines of variable.lisp and change *paste-site-name* and to what's -;;; appropriate for your host. If you want to run it behind a proxying -;;; Apache (recommended), edit apache.conf.include and include that -;;; from your httpd.conf. Then, run SBCL and invoke the magical -;;; invocation as follows, or simply (load "README"). +;;; lines of variable.lisp and change *paste-site-name* and the +;;; internal and external ports to what's appropriate for your +;;; host. If you want to run it behind a proxying Apache +;;; (recommended), edit apache.conf.include and include that from your +;;; httpd.conf. Then, run SBCL and invoke the magical invocation as +;;; follows, or simply (load "README").
(require :asdf) (require :lisppaste)
(lisppaste:start-lisppaste :channels '("#lisppaste") - :nickname "devpaste" + :nickname (format nil + "devpaste~A" + (random 500)) :server "irc.freenode.net" :port 6667)