https://github.com/makeplane/propel
https://github.com/makeplane/propel
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/makeplane/propel
- Owner: makeplane
- License: agpl-3.0
- Created: 2026-04-28T08:47:49.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-07-02T06:27:10.000Z (about 1 month ago)
- Last Synced: 2026-07-02T08:12:49.160Z (about 1 month ago)
- Language: TypeScript
- Homepage: https://storybook.propel.plane.so
- Size: 1.95 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
README
# propel
A [Vite+](https://viteplus.dev) monorepo.
## Docs
- [`docs/design.md`](./docs/design.md) — the shared design + code contract: how we
name component **properties** and structure component **anatomy**.
- [`docs/integration.md`](./docs/integration.md) — how we adopt propel into Plane:
the explicit-first rollout, composing primitives with Base UI `render`, and the
remaining anatomy work.
- [`packages/propel/README.md`](./packages/propel/README.md) — the `@plane/propel`
package: install, usage, and component conventions.
## Prerequisites
Install the `vp` CLI globally:
```bash
# macOS / Linux
curl -fsSL https://vite.plus | bash
# Windows (PowerShell)
irm https://vite.plus/ps1 | iex
```
## Workspace layout
```
propel/
├── apps/ # applications (scaffold with `vp create vite:application`)
├── packages/ # shared libraries (scaffold with `vp create vite:library`)
└── tools/ # generators (scaffold with `vp create vite:generator`)
```
## Common commands
```bash
vp install # install dependencies
vp dev # run dev servers
vp check # format + lint + type-check
vp test # run tests via Vitest
vp build # production build via Rolldown
vp run -r # run task across all workspace packages
```
Run `vp help` for the full command list.