Reader is a simple blogging platform for Radiance.
Set up Radiance and load Reader through Quicklisp or ASDF. Reader occupies the subdomain reader
. You can start writing blogs on reader./write
. Editing blogs happens on the same page, by appending /ID
with ID being the blog-entry ID.
- Make sure the Shirakumo dist is installed and Radiance is set up.
- Load reader:
(ql:quickload :reader)
- Set the title:
(setf (radiance:mconfig :reader :title) "My Fancy Blog")
- Start radiance:
(radiance:startup)
- Visit http://radiance.test:8080/!/reader/
- Make sure you have a user
(user:get "username" :if-does-not-exist :create)
- Grant it access rights
(user:grant "username" '(reader write))
- Log in
- Visit http://radiance.test:8080/!/reader/write/
- To edit, simply change
/article/
in the URL of an entry to/write/
.
- database
- data-model
- auth
- cache
- profile
(:title)
(:description)
(:markup)
The blog markup to use -- either:markdown
,:markless
,:html
, or:plain
. Defaults to:markdown
.
(reader write)