Fixup example files and README.
This commit is contained in:
parent
6573fd54dd
commit
4ae9634c52
3 changed files with 2 additions and 33 deletions
|
@ -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).
|
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/).
|
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
|
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```
|
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```
|
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```
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
:feeds ("lisp")
|
:feeds ("lisp")
|
||||||
:plugins ((mathjax)
|
:plugins ((mathjax)
|
||||||
(sitemap)
|
(sitemap)
|
||||||
|
(static-pages)
|
||||||
(disqus :shortname "my-site-name")
|
(disqus :shortname "my-site-name")
|
||||||
(analytics :tracking-code "foo"))
|
(analytics :tracking-code "foo"))
|
||||||
:repo "/home/git/tmp/improvedmeans/"
|
:repo "/home/git/tmp/improvedmeans/"
|
|
@ -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")))
|
|
Loading…
Add table
Reference in a new issue