Ningler is a blog application sample using ningle, a lightweight web application framework for Common Lisp. Ningler is a Common Lisp version of Flaskr, which appears in the tutorial documentation of Flask, a Python based microframework.
Database file must be created first time.
(init-db)
The file path of the database is assigned to the variable *db*
in ningler.lisp. You can change the value of this variable as you want.
Clone this repository into the local-projects of quicklisp,
$ cd ~/quicklisp/local-projects/site
$ git clone [email protected]:tanakahx/ningler.git
and then load it with quickload.
(ql:quickload "ningler")
You can access the site url http://localhost:5000
with a web browser.