diff --git a/README.md b/README.md index 904cd1f..b69521f 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Server side setup: 1. Setup git and create a bare repo as shown [here](http://git-scm.com/book/en/Git-on-the-Server-Setting-Up-the-Server). 2. Install Lisp (we recommend SBCL) and [Quicklisp](http://quicklisp.org/). -3. ```wget -c https://raw.github.com/redline6561/coleslaw/master/examples/single-site.coleslawrc -O ~/.coleslawrc``` # and edit as necessary +3. ```wget -c https://raw.github.com/redline6561/coleslaw/master/examples/example.coleslawrc -O ~/.coleslawrc``` # and edit as necessary 4. ```wget -c https://raw.github.com/redline6561/coleslaw/master/examples/example.post-receive -O your-blog.git/hooks/post-receive``` # and edit as necessary 5. ```chmod +x your-blog/.git/hooks/post-receive``` 6. Create or clone your blog repo locally. Add your server as a remote with ```git remote add prod git@my-host.com:path/to/repo.git``` diff --git a/examples/single-site.coleslawrc b/examples/example.coleslawrc similarity index 97% rename from examples/single-site.coleslawrc rename to examples/example.coleslawrc index 6bb752f..73016af 100644 --- a/examples/single-site.coleslawrc +++ b/examples/example.coleslawrc @@ -4,6 +4,7 @@ :feeds ("lisp") :plugins ((mathjax) (sitemap) + (static-pages) (disqus :shortname "my-site-name") (analytics :tracking-code "foo")) :repo "/home/git/tmp/improvedmeans/" diff --git a/examples/multi-site.coleslawrc b/examples/multi-site.coleslawrc deleted file mode 100644 index b04874f..0000000 --- a/examples/multi-site.coleslawrc +++ /dev/null @@ -1,32 +0,0 @@ -(("/home/coleslaw/tmp/lisp-is-fun/" . (:author "Ralph Moritz" - :deploy-dir "/home/coleslaw/www/lisp-is-fun/" - :domain "http://blub.co.za" - :feeds ("lisp") - :plugins ((mathjax)) - :routing ((:post "posts/~a") - (:tag-index "tag/~a") - (:month-index "date/~a") - (:numeric-index "~d") - (:feed "~a.xml") - (:tag-feed "tag/~a.xml")) - :sitenav ((:url "http://twitter.com/ralph_moeritz" :name "Twitter") - (:url "http://github.com/ralph-moeritz" :name "Code")) - :staging-dir "/tmp/coleslaw" - :title "(lisp :is 'fun)" - :theme "hyde")) - ("/home/coleslaw/tmp/musings/" . (:author "Ralph Moritz" - :deploy-dir "/home/coleslaw/www/musings/" - :domain "http://musings.co.za" - :feeds ("opinion") - :plugins ((mathjax)) - :routing ((:post "posts/~a") - (:tag-index "tag/~a") - (:month-index "date/~a") - (:numeric-index "~d") - (:feed "~a.xml") - (:tag-feed "tag/~a.xml")) - :sitenav ((:url "http://twitter.com/ralph_moeritz" :name "Twitter") - (:url "http://github.com/ralph-moeritz" :name "Code")) - :staging-dir "/tmp/coleslaw" - :title "Musings" - :theme "hyde")))