mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-01 10:09:58 +00:00
12 lines
261 B
Bash
Executable file
12 lines
261 B
Bash
Executable file
#!/bin/bash
|
|
|
|
kill $(lsof -t -i :8000)
|
|
|
|
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
|
|
./run_alembic_check.sh
|
|
poetry run python -m skyvern.forge
|