mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-04 19:50:37 +00:00
16 lines
271 B
Bash
Executable file
16 lines
271 B
Bash
Executable file
#!/bin/bash
|
|
|
|
pid=$(lsof -t -i :8080)
|
|
if [ -n "$pid" ]; then
|
|
kill "$pid"
|
|
fi
|
|
|
|
cd skyvern-frontend || exit 1
|
|
|
|
if [ ! -f .env ]; then
|
|
cp .env.example .env
|
|
echo "[ERROR] Please add your api keys to the skyvern-frontend/.env file."
|
|
fi
|
|
|
|
npm install --silent
|
|
npm run start
|