mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-04-25 17:09:10 +00:00
13 lines
222 B
Bash
Executable file
13 lines
222 B
Bash
Executable file
#!/bin/bash
|
|
|
|
kill $(lsof -t -i :8080)
|
|
|
|
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
|