mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-04-25 17:09:10 +00:00
.. | ||
.husky | ||
public | ||
src | ||
.env.example | ||
.eslintrc | ||
.prettierignore | ||
.prettierrc | ||
artifactServer.js | ||
components.json | ||
index.html | ||
localServer.js | ||
package-lock.json | ||
package.json | ||
postcss.config.js | ||
README.md | ||
tailwind.config.js | ||
tsconfig.json | ||
tsconfig.node.json | ||
vite.config.ts |
Skyvern Frontend
Quickstart
Populate env file
Copy example env file:
cp .env.example .env
Populate VITE_SKYVERN_API_KEY
with your API key.
Then run:
npm install
npm start
This will build the app and serve from port 8080.
Development
npm run dev
This will start the development server with hot module replacement.
Build for production
npm run build
This will make a production build in the dist
directory, ready to be served.
Preview the production build locally
npm run preview
or alternatively, use the serve
package:
npx serve@latest dist