Skip to content

Updating devilry in a production environment

espenak edited this page Sep 20, 2011 · 6 revisions

Enter the install directory of Devilry.

$ cd /where/devilry/is/installed/for/example/var/devily/
$ git pull
$ find . -name "*.pyc" -exec rm -f {} \;
$ productionenv/bin/django_production.py devilry_extjs_jsmerge
$ productionenv/bin/django_production.py collectstatic

Important: devilry_extjs_jsmerge must be run before collectstatic.

Now you need to restart the web server serving Devilry, such as Apache (if using mod_wsgi), or the FastCGI server or similar.

Clone this wiki locally