X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/a760f8955d0a4753eb48a7be5f5b242ca3b3f287..a85a7611b3634a92b827142f0abc6800395f8446:/README.rst diff --git a/README.rst b/README.rst index 48c4a76..f5c7b78 100644 --- a/README.rst +++ b/README.rst @@ -6,12 +6,16 @@ Pastes are editable, may have multiple files and are stored in git repositories. Homepage: http://sourceforge.net/p/phorkie/ +.. contents:: Table of Contents ======== Features ======== - every paste is a git repository - paste editing + + - add new files + - delete existing files - multiple files in one paste - syntax highlighting with GeSHi - rST rendering @@ -49,6 +53,29 @@ Install Twig $ pear install twig/Twig +===== +HowTo +===== + +Make git repositories clonable +============================== +To make git repositories clonable, you need to install ``git-daemon`` +(``git-daemon-run`` package on Debian/Ubuntu). + +Now make the repositories available by symlinking the paste repository +directory (``$GLOBALS['phorkie']['cfg']['repos']`` setting) into +``/var/cache/git``, e.g.:: + + $ ln -s /home/user/www/paste/repos /var/cache/git/paste + +Edit your ``config.php`` and set the ``$GLOBALS['phorkie']['cfg']['git']['public']`` +setting to ``git://$yourhostname/git/paste/``. +The rest will be appended automatically. + + +You're on your own to setup writable repositories. + + ================= Technical details =================