mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-04-25 17:09:10 +00:00
11 lines
155 B
Bash
11 lines
155 B
Bash
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# setting api key
|
|
export VITE_SKYVERN_API_KEY=$(sed -n 's/.*cred\s*=\s*"\([^"]*\)".*/\1/p' .streamlit/secrets.toml)
|
|
|
|
npm run start
|
|
|
|
|