Documentation

Get started with Project Alpha - installation, configuration, and guides

Quick Start

Get up and running with Project Alpha in under 5 minutes.

Installation

Install Project Alpha using your favorite package manager:

npm install @project-alpha/cli

Create a New Project

Run the init command to scaffold a new project:

alpha init my-app
cd my-app
alpha dev

Configuration

Project Alpha uses a simple JSON configuration file. Create an alpha.config.json in your project root:

{
  "name": "my-app",
  "entry": "src/index.ts",
  "output": "dist"
}

Next Steps

Now that you have Project Alpha running, check out our guides on themes, plugins, and deployment.