##// END OF EJS Templates
cli: convert 'gearbox make-index' into 'kallithea-cli index-create'
cli: convert 'gearbox make-index' into 'kallithea-cli index-create'

File last commit:

r6980:6ef837ac default
r7337:502b9bd0 default
Show More
overview.rst
146 lines | 6.5 KiB | text/x-rst | RstLexer
Mads Kiilerich
docs: add installation overview section
r5081 .. _overview:
=====================
Mads Kiilerich
docs: cleanup of casing, markup and spacing of headings...
r5413 Installation overview
Mads Kiilerich
docs: add installation overview section
r5081 =====================
Some overview and some details that can help understanding the options when
installing Kallithea.
Mads Kiilerich
docs: cleanup of casing, markup and spacing of headings...
r5413 Python environment
Mads Kiilerich
docs: add installation overview section
r5081 ------------------
**Kallithea** is written entirely in Python_ and requires Python version
2.6 or higher. Python 3.x is currently not supported.
Given a Python installation, there are different ways of providing the
environment for running Python applications. Each of them pretty much
corresponds to a ``site-packages`` directory somewhere where packages can be
installed.
Kallithea itself can be run from source or be installed, but even when running
from source, there are some dependencies that must be installed in the Python
environment used for running Kallithea.
- Packages *could* be installed in Python's ``site-packages`` directory ... but
that would require running pip_ as root and it would be hard to uninstall or
upgrade and is probably not a good idea unless using a package manager.
- Packages could also be installed in ``~/.local`` ... but that is probably
only a good idea if using a dedicated user per application or instance.
- Finally, it can be installed in a virtualenv_. That is a very lightweight
"container" where each Kallithea instance can get its own dedicated and
self-contained virtual environment.
We recommend using virtualenv for installing Kallithea.
Mads Kiilerich
docs: cleanup of casing, markup and spacing of headings...
r5413 Installation methods
Mads Kiilerich
docs: add installation overview section
r5081 --------------------
Kallithea must be installed on a server. Kallithea is installed in a Python
environment so it can use packages that are installed there and make itself
available for other packages.
Two different cases will pretty much cover the options for how it can be
installed.
Mads Kiilerich
docs: more consistent use of --
r5435 - The Kallithea source repository can be cloned and used -- it is kept stable and
Mads Kiilerich
docs: add installation overview section
r5081 can be used in production. The Kallithea maintainers use the development
branch in production. The advantage of installation from source and regularly
updating it is that you take advantage of the most recent improvements. Using
it directly from a DVCS also means that it is easy to track local customizations.
Andrew Shadura
docs: suggest using pip instead of setup.py develop
r5726 Running ``pip install -e .`` in the source will use pip to install the
Mads Kiilerich
docs: add installation overview section
r5081 necessary dependencies in the Python environment and create a
``.../site-packages/Kallithea.egg-link`` file there that points at the Kallithea
source.
- Kallithea can also be installed from ready-made packages using a package manager.
The official released versions are available on PyPI_ and can be downloaded and
installed with all dependencies using ``pip install kallithea``.
With this method, Kallithea is installed in the Python environment as any
other package, usually as a ``.../site-packages/Kallithea-X-py2.7.egg/``
directory with Python files and everything else that is needed.
(``pip install kallithea`` from a source tree will do pretty much the same
but build the Kallithea package itself locally instead of downloading it.)
domruf
less: don't distribute the generated style.css file - for now, it must be built with npm after installing Kallithea...
r6980 .. note:: The front-end code is built with Node. Currently, it must be built
locally after installing Kallithea. Assuming Node and the Node
Package Manager is available, other tools and source code will be
downloaded and installed. The front-end code can then be built from
source locally.
Mads Kiilerich
docs: add installation overview section
r5081
Mads Kiilerich
docs: cleanup of casing, markup and spacing of headings...
r5413 Web server
Mads Kiilerich
docs: add installation overview section
r5081 ----------
Kallithea is (primarily) a WSGI_ application that must be run from a web
Mads Kiilerich
docs: fix some confusing paste/paster typos
r5417 server that serves WSGI applications over HTTP.
Mads Kiilerich
docs: add installation overview section
r5081
Mads Kiilerich
docs: try to improve the web server overview page...
r5418 Kallithea itself is not serving HTTP (or HTTPS); that is the web server's
responsibility. Kallithea does however need to know its own user facing URL
(protocol, address, port and path) for each HTTP request. Kallithea will
usually use its own HTML/cookie based authentication but can also be configured
to use web server authentication.
Mads Kiilerich
docs: add installation overview section
r5081
Mads Kiilerich
docs: try to improve the web server overview page...
r5418 There are several web server options:
Mads Kiilerich
docs: add installation overview section
r5081
Mads Kiilerich
gearbox: replace paster with something TurboGears2-ish that still works with the Pylons stack...
r6509 - Kallithea uses the Gearbox_ tool as command line interface. Gearbox provides
``gearbox serve`` as a convenient way to launch a Python WSGI / web server
Mads Kiilerich
docs: try to improve the web server overview page...
r5418 from the command line. That is perfect for development and evaluation.
Actual use in production might have different requirements and need extra
work to make it manageable as a scalable system service.
Mads Kiilerich
docs: add installation overview section
r5081
Mads Kiilerich
gearbox: replace paster with something TurboGears2-ish that still works with the Pylons stack...
r6509 Gearbox comes with its own built-in web server but Kallithea defaults to use
Mads Kiilerich
docs: try to improve the web server overview page...
r5418 Waitress_. Gunicorn_ is also an option. These web servers have different
limited feature sets.
Mads Kiilerich
docs: add installation overview section
r5081
Mads Kiilerich
gearbox: replace paster with something TurboGears2-ish that still works with the Pylons stack...
r6509 The web server used by ``gearbox`` is configured in the ``.ini`` file passed
Mads Kiilerich
docs: try to improve the web server overview page...
r5418 to it. The entry point for the WSGI application is configured
in ``setup.py`` as ``kallithea.config.middleware:make_app``.
Mads Kiilerich
docs: add installation overview section
r5081
- `Apache httpd`_ can serve WSGI applications directly using mod_wsgi_ and a
simple Python file with the necessary configuration. This is a good option if
Apache is an option.
Mads Kiilerich
docs: try to improve the web server overview page...
r5418 - uWSGI_ is also a full web server with built-in WSGI module.
Mads Kiilerich
docs: add installation overview section
r5081 - IIS_ can also server WSGI applications directly using isapi-wsgi_.
Mads Kiilerich
docs: try to improve the web server overview page...
r5418 - A `reverse HTTP proxy <https://en.wikipedia.org/wiki/Reverse_proxy>`_
can be put in front of another web server which has WSGI support.
Such a layered setup can be complex but might in some cases be the right
option, for example to standardize on one internet-facing web server, to add
encryption or special authentication or for other security reasons, to
provide caching of static files, or to provide load balancing or fail-over.
Nginx_, Varnish_ and HAProxy_ are often used for this purpose, often in front
Mads Kiilerich
gearbox: replace paster with something TurboGears2-ish that still works with the Pylons stack...
r6509 of a ``gearbox serve`` that somehow is wrapped as a service.
Mads Kiilerich
docs: add installation overview section
r5081
The best option depends on what you are familiar with and the requirements for
performance and stability. Also, keep in mind that Kallithea mainly is serving
Mads Kiilerich
docs: try to improve the web server overview page...
r5418 dynamically generated pages from a relatively slow Python process. Kallithea is
also often used inside organizations with a limited amount of users and thus no
Mads Kiilerich
docs: add installation overview section
r5081 continuous hammering from the internet.
.. _Python: http://www.python.org/
.. _Gunicorn: http://gunicorn.org/
.. _Waitress: http://waitress.readthedocs.org/en/latest/
.. _virtualenv: http://pypi.python.org/pypi/virtualenv
Mads Kiilerich
gearbox: replace paster with something TurboGears2-ish that still works with the Pylons stack...
r6509 .. _Gearbox: http://turbogears.readthedocs.io/en/latest/turbogears/gearbox.html
Mads Kiilerich
docs: add installation overview section
r5081 .. _PyPI: https://pypi.python.org/pypi
.. _Apache httpd: http://httpd.apache.org/
.. _mod_wsgi: https://code.google.com/p/modwsgi/
.. _isapi-wsgi: https://github.com/hexdump42/isapi-wsgi
Mads Kiilerich
docs: try to improve the web server overview page...
r5418 .. _uWSGI: https://uwsgi-docs.readthedocs.org/en/latest/
Mads Kiilerich
docs: add installation overview section
r5081 .. _nginx: http://nginx.org/en/
.. _iis: http://en.wikipedia.org/wiki/Internet_Information_Services
.. _pip: http://en.wikipedia.org/wiki/Pip_%28package_manager%29
.. _WSGI: http://en.wikipedia.org/wiki/Web_Server_Gateway_Interface
Mads Kiilerich
docs: try to improve the web server overview page...
r5418 .. _HAProxy: http://www.haproxy.org/
.. _Varnish: https://www.varnish-cache.org/