orcheo-studio
v0.22.2
Published
Orcheo UI for Orcheo workflow orchestration platform
Maintainers
Readme
Orcheo
Front‑end workspace for the Orcheo workflow studio prototype. The app is built with Vite, React 19, TypeScript, Tailwind, and shadcn/ui components.
Installation
As an npm package
npm install -g orcheo-studio # install globally
# or
npm install orcheo-studio # install locally in your projectFor development
uv run npm install # install orcheo-studio dependenciesGetting Started
Using the CLI (after npm install)
orcheo-studio # start preview server (production mode)
orcheo-studio start # start preview server (alias)
orcheo-studio dev # start development server on http://localhost:2026
orcheo-studio build # create a production build
orcheo-studio preview # preview production buildUsing npm scripts (for development)
uv run npm run dev # start Vite on http://localhost:2026
uv run npm run build # create a production build
uv run npm run lint # lint with eslint
uv run npm run preview # preview production buildProject Layout
src/main.tsx/src/App.tsx— App bootstrap and router.src/features/— Feature modules (auth, workflow, account, support, shared).src/design-system/— Wrapped shadcn/ui primitives that back the UI.src/hooks/,src/lib/— Reusable hooks and utilities.
Testing
The project is configured with Vitest and Testing Library. Run the suite with:
uv run npm testNotes
- The repo excludes
node_modules; install dependencies before running scripts. - Tailwind configuration lives in
tailwind.config.jswith PostCSS settings inpostcss.config.js.
