UnderCover/start

24 lines
565 B
Bash
Executable File

#!/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..."
gunicorn -b localhost:8080 "app:create_app()"
else
echo "Starting local dev server..."
export FLASK_APP=app
flask --debug run --host=0.0.0.0
fi