Go to file
rolux 2e7b954bd5 minor change 2013-02-13 10:06:04 +05:30
etc rename 2013-02-12 16:16:25 +05:30
item PREFIX 2013-02-12 20:05:30 +05:30
static minor change 2013-02-13 10:06:04 +05:30
templates error message 2013-02-12 20:17:40 +05:30
videopdf prefix urls 2013-02-12 16:01:17 +01:00
.bzrignore add virtualenv 2013-02-12 13:19:16 +05:30
README README 2013-02-12 20:49:25 +05:30
manage.py add chunk upload files 2013-02-12 19:36:39 +05:30
requirements.txt add virtualenv 2013-02-12 13:19:16 +05:30

README

videopdf - share pdfs with video overlays

Get:
    cd /srv
    bzr branch http://code.0x2620.org/videopdf
    cd videopdf
    virtualenv --system-site-packages .
    . bin/activate
    pip install -r requirements.txt

Develop:

    cd /srv/videopdf
    ./manage.py syncdb
    ./manage.py runserver

Deploy:
    # create /srv/videopdf/videopdf/local_settings.py with your database settings
    # create /etc/apache2/sites-availavle/videopdf.conf (use etc/apache2/videopdf.conf as template)
    # create /etc/init/videopdf.conf (ues etc/init/videopdf.conf as template)

    a2ensite videopdf
    service videopdf start
    service apache2 reload