Przeglądaj źródła

Note coleslaw-heroku in the README.

Brit Butler 12 lat temu
rodzic
commit
2b0c0e3925
2 zmienionych plików z 3 dodań i 2 usunięć
  1. 1 0
      README.md
  2. 2 2
      src/config.lisp

+ 1 - 0
README.md

@@ -17,6 +17,7 @@ Coleslaw aims to be flexible blog software suitable for replacing a single-user
17 17
 * Plugins to...
18 18
   * Use LaTeX (inside pairs of $$) via Mathjax
19 19
   * Import from wordpress
20
+* There is also a [Heroku buildpack](https://github.com/jsmpereira/coleslaw-heroku) maintained by Jose Pereira.
20 21
 
21 22
 ## Installation
22 23
 This software should be portable to any conforming Common Lisp implementation but this guide will assume SBCL is installed. Testing has also been done on CCL.

+ 2 - 2
src/config.lisp

@@ -6,9 +6,9 @@
6 6
    (domain :initarg :domain :initform "" :accessor domain)
7 7
    (feeds :initarg :feeds :initform nil :accessor feeds)
8 8
    (license :initarg :license :initform nil :accessor license)
9
-   (plugins :initarg :plugins :initform '() :accessor plugins)
9
+   (plugins :initarg :plugins :initform nil :accessor plugins)
10 10
    (repo :initarg :repo :initform #p"/" :accessor repo)
11
-   (sitenav :initarg :sitenav :initform "" :accessor sitenav)
11
+   (sitenav :initarg :sitenav :initform nil :accessor sitenav)
12 12
    (staging :initarg :staging :initform #p"/tmp/coleslaw/" :accessor staging)
13 13
    (title :initarg :title :initform "" :accessor title)
14 14
    (theme :initarg :theme :initform "hyde" :accessor theme)))