Create command wrapper for manage.py

This commit is contained in:
Livvy Mackintosh 2017-05-21 01:56:10 +02:00
parent 62086012a9
commit d8810d5c43

9
bin/ojusomap Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
# A wrapper around manage.py for ojusomap
# that automatically activates venv
THISDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
VENV=${THISDIR}/../.venv
PYTHON=$VENV/bin/python
MANAGEPY=$THISDIR/../manage.py
$PYTHON $MANAGEPY $@