Some checks failed
Run tests and pre-commit / Run tests and pre-commit hooks (push) Has been cancelled
Run tests and pre-commit / Frontend Lint and Build (push) Has been cancelled
Publish Fern Docs / run (push) Has been cancelled
Update OpenAPI Specification / update-openapi (push) Has been cancelled
- Implemented full Russian translation (ru) for 8 major pages - Added LanguageSwitcher component with language detection - Translated: Navigation, Settings, Workflows, Credentials, Banner, Examples - Fixed API endpoint path: changed to use sans-api-v1 client for /v1/ endpoints - Fixed CORS: added http://localhost:8081 to ALLOWED_ORIGINS - Added locales infrastructure with i18next and react-i18next - Created bilingual JSON files (en/ru) for 4 namespaces - 220+ translation keys implemented - Backend CORS configuration updated in .env - Documentation: I18N implementation guides and installation docs
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