#!/bin/sh

DIR="$(dirname $0)"
# If not in dev environment then set entry point to share location
if [ ! -d "$DIR/app/" ]; then
    cd "$DIR/../share/lyrebird"
fi
exec python3 -B app.py
