pan.do/ra is a free, open source media archive platform. https://pan.do/ra
Go to file
j 32558967e0 add extract 2010-09-04 14:59:09 +02:00
apache make find api more jsonic 2010-02-22 14:55:29 +05:30
etc/init use celery 2010-06-25 13:53:57 +02:00
fixtures foo 2009-06-08 18:08:59 +02:00
pandora add extract 2010-09-04 14:59:09 +02:00
wsgi init scripts and name 2010-04-29 14:29:13 +03:00
.bzrignore random commit 2009-12-31 16:04:32 +01:00
README update README 2010-07-03 13:14:16 +02:00
requirements.txt update requirements.txt 2010-08-10 23:58:37 +02:00

README

To setup a local instance of pandora:

    bzr branch http://code.0x2620.org/pandora pandora
    cd pandora
    virtualenv .
    pip -E . install -r requirements.txt


you need python, bazaar, pip and virtualenv:

    apt-get install python-setuptools bzr
    easy_install pip
    pip install virtualenv
    apt-get install python-dev python-imaging

also it uses system python moduels, so make sure you have
 ipython, dbmodule(psycopg2, python-mysqldb,..)
installed via apt-get/pip/easy_install in your system path.

Install rabbitmq and carrot:
    sudo apt-get install rabbitmq-server
    
    sudo rabbitmqctl add_user pandora box
    sudo rabbitmqctl add_vhost /pandora
    sudo rabbitmqctl set_permissions -p /pandora pandora ".*" ".*" ".*"


    update BROKER_* settings in local_settings.py:

Development:
    we are using django, http://docs.djangoproject.com/en/dev/
    

Apache setup:
    sudo apt-get install libapache2-mod-wsgi libapache2-mod-xsendfile