UnderCover/start

24 lines
579 B
Plaintext
Raw Normal View History

#!/bin/bash
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
if ! test -f "$SCRIPT_DIR/.undercover_init_successful"; then
if ! "$SCRIPT_DIR/init"; then
exit 1
fi
fi
if ! pip3 -V | grep -E "$SCRIPT_DIR/\.?venv"; then
echo "Entering virtual environment..."
source "$SCRIPT_DIR/.venv/bin/activate"
fi
if [[ "$1" == "prod" ]]; then
echo "Starting gunicorn production server..."
2022-09-27 02:17:27 -04:00
gunicorn -b localhost:8080 "undercover:create_app()"
else
echo "Starting local dev server..."
export FLASK_APP=undercover
flask --debug run --host=0.0.0.0
fi