Skip to content

Latest commit

 

History

History
59 lines (39 loc) · 2.79 KB

File metadata and controls

59 lines (39 loc) · 2.79 KB

Tailor Platform App Shell

License: MIT

AppShell is an opinionated React application framework for creating applications on Tailor Platform. It gives you authentication, routing, sidebar navigation, responsive layouts, and reusable ERP components out of the box — so you can focus on building business screens.

Packages

Package Version Description
@tailor-platform/app-shell npm Core library — components, hooks, layouts, and authentication
@tailor-platform/app-shell-vite-plugin npm Vite plugin for file-based routing

Examples

Example Description
vite-app Vite app with file-based routing using the vite-plugin
nextjs-app Next.js App Router integration

Documentation

For users building applications with AppShell, see the detailed guides in docs/:

Development

This project is a monorepo managed with pnpm.

Setup

pnpm install

Commands

pnpm dev          # Start all packages in development mode with hot reloading
pnpm build        # Build all packages for production
pnpm type-check   # Run type checking across all packages

Testing

cd packages/core && pnpm test

Publishing

This project uses changesets for version management:

pnpm changeset:create    # Create a changeset describing your changes
pnpm changeset:publish   # Build and publish to NPM (automated via CI)