Plain is headed towards 1.0! Subscribe for development updates →

Plain Start

Bootstrap a new Plain project from official starter templates.

Overview

The plain-start command provides a streamlined way to create new Plain projects from official starter templates. It clones the starter repository, configures your project name, and optionally runs the installation script to get you up and running quickly.

Basic usage:

uvx plain-start my-project

This creates a new project called my-project using the full app starter template (with ORM, auth, admin, etc.).

Starter types

Plain provides two official starter templates:

App starter (default)

The app starter includes a full-featured setup with:

  • Database ORM
  • Authentication system
  • Admin interface
  • Session management
  • All core Plain packages

Create an app starter project:

uvx plain-start my-app
# or explicitly:
uvx plain-start my-app --type app

Bare starter

The bare starter is a minimal setup with:

  • Plain framework core
  • Development tools only
  • No database or auth by default

Create a bare starter project:

uvx plain-start my-project --type bare

Options

The cli command accepts the following options:

--type

Choose between app (default) or bare starter templates.

uvx plain-start my-project --type bare

--no-install

Skip running the ./scripts/install script after cloning. Useful if you want to review the project structure before installing dependencies.

uvx plain-start my-project --no-install