Improve local setup and README (#291)

This commit is contained in:
Salih Altun
2024-05-09 20:21:13 +03:00
committed by GitHub
parent ebfc1a6f0f
commit 240551f686
6 changed files with 292 additions and 4 deletions

View File

@@ -2,6 +2,8 @@
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
- [Skyvern Frontend](#skyvern-frontend)
- [Quickstart](#quickstart)
- [Populate env file](#populate-env-file)
- [Development](#development)
- [Build for production](#build-for-production)
- [Preview the production build locally](#preview-the-production-build-locally)
@@ -10,6 +12,30 @@
# Skyvern Frontend
## Quickstart
### Populate env file
Copy example env file:
```sh
cp .env.example .env
```
Populate `VITE_SKYVERN_API_KEY` with your API key.
Then run:
```sh
npm install
```
```sh
npm start
```
This will build the app and serve from port 8080.
## Development
```sh