Files
star-kitten/packages/freight-web/README.md
2025-12-24 00:38:53 -05:00

1.2 KiB

Ripple Basic Template

A minimal Ripple application template with TypeScript and Vite.

Getting Started

  1. Install dependencies:

    npm install # or pnpm or yarn
    
  2. Start the development server:

    npm run dev
    
  3. Build for production:

    npm run build
    

Code Formatting

This template includes Prettier with the Ripple plugin for consistent code formatting.

Available Commands

  • npm run format - Format all files
  • npm run format:check - Check if files are formatted correctly

Configuration

Prettier is configured in .prettierrc with the following settings:

  • Uses tabs for indentation
  • Single quotes for strings
  • 100 character line width
  • Includes the @ripple-ts/prettier-plugin for .ripple file formatting

VS Code Integration

For the best development experience, install the Prettier VS Code extension and the Ripple VS Code extension.

Learn More