Up

First very simple blog engine

I have checked out a few blog engine, but I wasn't happy with any of them. Thus I will create one of my own. The basic architecture just features a git repository which is managed by gitolite. In the server repository, I have a post-receive hook which just checks the repository out to /var/www/native-human on each push.
#!/bin/sh
umask 022
GIT_WORK_TREE=/var/www/native-human git checkout -f
The blog system is very basic for now. Features that I am missing are: However, the system also has some nice features: Let's summarize, that I am very satisfied for this first try with my new blog, and that I will try to keep it updated regularly and try to improve it in the future.

Created on: 2015-01-12