Tree @0.9.1 (Download .tar.gz)
klaus: a simple, easy-to-set-up Git web viewer that Just Works™.
(If it doesn't Just Work for you, please file a bug.)
Demo: | http://klausdemo.lophus.org |
---|---|
Mailing list: | http://groups.google.com/group/klaus-users |
On PyPI: | http://pypi.python.org/pypi/klaus/ |
Wiki: | https://github.com/jonashaag/klaus/wiki |
License: | ISC (BSD) |
Contributing
Please do it!
I'm equally happy with bug reports/feature ideas and code contributions. If you have any questions/issues, I'm happy to help!
For starters, here are a few ideas what to work on. :-)
Features
- Super easy to set up -- no configuration required
- Syntax highlighting
- Git Smart HTTP support
Usage
See also: Klaus wiki
Using the klaus script
NOTE: This is intended for testing/low-traffic local installations only! The klaus script uses wsgiref internally which doesn't scale at all (in fact it's single-threaded and non-asynchronous).
To run klaus using the default options:
klaus [repo1 [repo2 ...]]
For more options, see:
klaus --help
Using a real server
The klaus module contains a make_app function which returns a WSGI app.
An example WSGI helper script is provided with klaus (see klaus/contrib/wsgi.py), configuration being read from environment variables. Use it like this (uWSGI example):
uwsgi -w klaus.contrib.wsgi \ --env KLAUS_SITE_NAME="Klaus Demo" \ --env KLAUS_REPOS="/path/to/repo1 /path/to/repo2 ..." \ ...
Gunicorn example:
gunicorn --env KLAUS_SITE_NAME="Klaus Demo" \ --env KLAUS_REPOS="/path/to/repo1 /path/to/repo2 ..." \ klaus.contrib.wsgi
See also deployment section in the wiki.
Commit History @0.9.1
- Version 0.9.1 Jonas Haag 4 years ago
- Merge pull request #157 from sbraz/scriptname Jonas Haag 4 years ago
- Do not change SCRIPT_NAME if HTTP_X_SCRIPT_NAME isn't set, fixes #155 Louis Sautier 4 years ago
- Fix Python 2 support Jonas Haag 5 years ago
- Some Python 3 fixes Jonas Haag 5 years ago
- Link to low complexity tickets in README Jonas Haag 5 years ago
- Version 0.8.0 Jonas Haag 5 years ago
- Revert "Fix 'get_tag_and_branch_shas' for bare repos" Jonas Haag 5 years ago
- Update CHANGELOG.rst Jonas Haag 5 years ago
- Update CHANGELOG.rst Jonas Haag 5 years ago