Skip to content

Installation

veloutin edited this page Feb 4, 2011 · 2 revisions

The installation procedure is relatively simple. There is everything in the source code to build a package, but it is not published yet. Until then

  1. Get the source: git clone git://github.com/veloutin/papas.git cd papas
  2. Install dependencies sudo apt-get install python python-django python-pyinotify python-pexpect python-paramiko
  3. Install papas sudo python setup.py install
  4. Configure the database using /etc/papas/settings.py Depending on your database choice, you will need to install the appropriate python modules (e.g. python-psycopg2)
  5. Create the database
  6. Initialize the database env PYTHONPATH=/etc/papas DJANGO_SETTINGS_MODULE=settings django-admin syncdb
  7. Configure apache a2enmod wsgi ln -s /etc/papas/apache2-conf/papas.wsgi /etc/apache2/conf.d/papas.wsgi
  8. Enjoy!
Clone this wiki locally