Files
Dorod-Sky/run_skyvern.sh
Stanislav Novosad d61179e132 Migrate Skyvern to uv from poetry (#3554)
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
Co-authored-by: stas <stas@skyvern.com>
2025-09-30 15:19:12 -06:00

16 lines
271 B
Bash
Executable File

#!/bin/bash
pid=$(lsof -t -i :8000)
if [ -n "$pid" ]; then
kill "$pid"
fi
if [ ! -f .env ]; then
cp .env.example .env
echo "Please add your api keys to the .env file."
fi
# shellcheck source=/dev/null
uv sync
./run_alembic_check.sh
uv run python -m skyvern.forge