mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-01 18:20:06 +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
|
|
|
|
|