I'm currently setting up a SVN repro for personal use. Normally on Debian that'd be svnserve, trac, maybe Apache... and that's three apps to take care of. Most stuff requires an Apache, but I use a lighttpd.
I want one server app that does that. Is there something - like a trac wiki that brings its own SVN server?
wishi
It isn't subversion but it is an all in one solution like you want. Look at fossil I've had good luck using it for personal projects.
Since trac will take care of code and revisions browsing, why not simply use the stand-alone tracserver? I won't be listening on port 80, but since it's your private repo it shouldn't hurt. Additionally, you don't really need svnserver when you use svn over ssh. And I guess that ssh is already running on your box.
I use Subversion for personal use and, in that case, SSH is all what is needed. My URL is:
and this requires nothing on
svn.example.org
except a SSH server which I already have.Even if something configures them all together, it's still three apps to take care of, and the attempted integration will just make it harder to figure out what goes wrong, when it inevitably does.
If you don't mind keeping notes and stuff on the side, you can of course use git and omit the 'repository' concept altogether. and if you need to, you can serve it whenever. ...And scale up, if that'd happen.