|
@@ -28,8 +28,8 @@ Server side setup:
|
28
|
28
|
|
29
|
29
|
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).
|
30
|
30
|
2. Install Lisp and [Quicklisp](http://quicklisp.org/).
|
31
|
|
-3. ```wget -c https://raw.github.com/redline6561/coleslaw/master/example.coleslawrc -O ~/.coleslawrc``` # and edit as necessary
|
32
|
|
-4. ```wget -c https://raw.github.com/redline6561/coleslaw/master/example.post-receieve -O your-blog.git/hooks/post-receive``` # and edit as necessary
|
|
31
|
+3. ```wget -c https://raw.github.com/redline6561/coleslaw/master/examples/single-site.coleslawrc -O ~/.coleslawrc``` # and edit as necessary
|
|
32
|
+4. ```wget -c https://raw.github.com/redline6561/coleslaw/master/examples/example.post-receieve -O your-blog.git/hooks/post-receive``` # and edit as necessary
|
33
|
33
|
5. ```chmod +x your-blog/.git/hooks/post-receive```
|
34
|
34
|
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```
|
35
|
35
|
7. Point the web server of your choice at the symlink /path/to/deploy-dir/.curr/
|
|
@@ -58,7 +58,7 @@ There is a "plugin" to import from wordpress. At some point, it should be turned
|
58
|
58
|
3. ```(load-plugins '(import))```
|
59
|
59
|
4. ```(coleslaw-import::import-posts "/path/to/export.xml")```
|
60
|
60
|
|
61
|
|
-The XML will be read and placed into .post files in the :repo location specified in your [.coleslawrc](http://github.com/redline6561/coleslaw/blob/master/example.coleslawrc).
|
|
61
|
+The XML will be read and placed into .post files in the :repo location specified in your [.coleslawrc](http://github.com/redline6561/coleslaw/blob/master/examples/single-site.coleslawrc).
|
62
|
62
|
|
63
|
63
|
## Writing your own plugins
|
64
|
64
|
For now, see the [API](http://redlinernotes.com/docs/coleslaw.html) and the [mathjax plugin](https://github.com/redline6561/coleslaw/blob/master/plugins/mathjax.lisp) for an example.
|