24 lines
645 B
Text
24 lines
645 B
Text
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
|