Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 1.24 KB

installation.rst

File metadata and controls

52 lines (34 loc) · 1.24 KB

Installation

Requirements

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. Download it:

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

Finally, to run Kotti:

bin/pserve app.ini

Note

To run the application with older versions of Pyramid, you might need to do instead:

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