nuclblog

https://github.com/slyrus/nuclblog.git

git clone 'https://github.com/slyrus/nuclblog.git'

(ql:quickload :nuclblog)
1

nuclblog

Cyrus Harmon Thu Dec 20 09:16:27 2007

nuclblog is a blog engine written in Common Lisp. nuclblog aims to be a clean, relatively lightweight blog engine based on the hunchentoot web server.

To install it you need to do/get the following:

  1. Prerequisites:

  2. hunchentoot

  3. cl-who

  4. cl-store

and for the demo:

Install the nuclblog.asd file in the usual place .asd files go on your system (e.g., /usr/local/lib/sbcl/site-systems)

  1. SSL

edit demo/ssl/openssl.config and then:

To create a new cert:

cd demo/ssl openssl genrsa -out key.pem 1024
openssl req -config openssl.config -new -key key.pem -out request.pem openssl req -x509 -days 365 -key key.pem -in request.pem -out certificate.pem

  1. Running the demo

execute the following:

(asdf:oos 'asdf:load-op :nuclblog-demo)

(nuclblog-demo:start-services)

or

(nuclblog-demo:start-services :use-ssl t)

(nuclblog::add-user nuclblog-demo::blog “demo” “demo”)

and you should be ready to go!

  1. Acknowledgments

Thanks to Brian Mastenbrook for his cl-blog which served as inspiration for this project. Thanks to Edi Weitz for his wonderful hunchentoot, cl-who, drakma, among others, projects.