Skyvern/skyvern-frontend
2025-04-19 11:24:02 +08:00
..
.husky Initialize frontend app () 2024-03-20 11:09:47 -07:00
public Change sidebar width and make it collapsible () 2024-07-24 15:22:16 +03:00
src Block Library naming fix () 2025-04-19 11:24:02 +08:00
.env.example improve code block failure reason () 2025-03-10 12:50:53 +08:00
.eslintrc Initialize frontend app () 2024-03-20 11:09:47 -07:00
.prettierignore Initialize frontend app () 2024-03-20 11:09:47 -07:00
.prettierrc Add tailwind plugin for prettier () 2024-07-11 21:29:47 +03:00
artifactServer.js feat: Running tasks and steps UI () 2024-04-07 21:52:59 +03:00
components.json Component library setup () 2024-03-20 14:07:02 -07:00
index.html feat: Running tasks and steps UI () 2024-04-07 21:52:59 +03:00
localServer.js Improve local setup and README () 2024-05-09 20:21:13 +03:00
package-lock.json Add ability to search workflows by title () 2025-01-24 23:33:06 +03:00
package.json Add ability to search workflows by title () 2025-01-24 23:33:06 +03:00
postcss.config.js Component library setup () 2024-03-20 14:07:02 -07:00
README.md Improve local setup and README () 2024-05-09 20:21:13 +03:00
tailwind.config.js Remove override for container in tailwind config () 2024-10-11 18:08:22 +03:00
tsconfig.json Component library setup () 2024-03-20 14:07:02 -07:00
tsconfig.node.json Initialize frontend app () 2024-03-20 11:09:47 -07:00
vite.config.ts Tasks page implementation () 2024-04-01 21:34:52 +03:00

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