mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-26 10:41:14 +00:00
9 lines
175 B
Bash
Executable file
9 lines
175 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
|
|
poetry run python -m skyvern.forge
|