Change shell scripts to run new UI (#533)

This commit is contained in:
Salih Altun
2024-07-02 19:20:47 +03:00
committed by GitHub
parent 42e299a9d9
commit 7479918680
5 changed files with 49 additions and 5 deletions

View File

@@ -1,2 +1,13 @@
source "$(poetry env info --path)/bin/activate"
streamlit run streamlit_app/visualizer/streamlit.py -- $@
#!/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