This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/bin/bash
|
|
|
|
# Check if this file is a symlink, if so, read real base dir
|
|
BASE_DIR=$(dirname $(readlink -f ${BASH_SOURCE[0]}))
|
|
|
|
cd $BASE_DIR
|
|
PYTHONPATH="${BASE_DIR}/vendor/" python3 manage.py $@
|