10 lines
250 B
Bash
Executable File
10 lines
250 B
Bash
Executable File
#!/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 $@
|