Fork me on GitHub

Requirements

  • Runs on Python versions 2.6 and 2.7.
  • Support for PostgreSQL and SQLite (tested continuously), and a list of other SQL databases (not tested regularly)
  • Support for WSGI and a variety of web servers, including Apache

Installation using virtualenv

It’s recommended to install Kotti inside a virtualenv:

virtualenv mysite --no-site-packages
cd mysite
bin/pip install Kotti

Kotti uses Paste Deploy for configuration and deployment. An example configuration file is included with Kotti’s source distribution:

wget https://github.com/Pylons/Kotti/raw/master/development.ini

Finally, to run the application under Pyramid 1.3 and better:

bin/pserve development.ini

Or alternatively, with older versions of Pyramid:

bin/pip install PasteScript
bin/paster serve development.ini

Table Of Contents

Previous topic

Kotti

Next topic

INI File