2024-07-02 19:20:47 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2025-05-21 18:14:47 -04:00
|
|
|
pid=$(lsof -t -i :8080)
|
|
|
|
|
if [ ! -z "$pid" ]; then
|
|
|
|
|
kill $pid
|
|
|
|
|
fi
|
2024-07-02 19:20:47 +03:00
|
|
|
|
|
|
|
|
cd skyvern-frontend
|
|
|
|
|
|
|
|
|
|
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
|