Files
Dorod-Sky/run_skyvern.sh

16 lines
300 B
Bash
Raw Normal View History

#!/bin/bash
pid=$(lsof -t -i :8000)
if [ ! -z "$pid" ]; then
kill $pid
fi
if [ ! -f .env ]; then
cp .env.example .env
echo "Please add your api keys to the .env file."
fi
source "$(poetry env info --path)/bin/activate"
poetry install
2024-03-05 13:35:51 -05:00
./run_alembic_check.sh
poetry run python -m skyvern.forge