Project Docs

Getting Started

Learn how to install, configure, and start using our platform with step-by-step instructions.

Installation

1. Choose Your Platform

2. Verify Installation

$ platform --version

Expected Output:

Platform CLI version 2.8.1

Quick Start Guide

Basic Workflow


# Initialize new project
$ platform init my-project

# Navigate to project directory
$ cd my-project

# Build application
$ platform build

# Run locally
$ platform serve

This sequence creates a new project, builds it, and starts the development server.

Interactive Terminal

platform-cli
$ platform init sample
Creating new project: sample...
✓ Project directory created
✓ Default configuration written
✓ Dependency installation started...
✓ Project ready!

(sample)$ build
Starting build process...
✓ Bundle created at dist/
✓ Build time: 1.4 seconds

(sample)$ serve --port 3000
Listening on port 3000...
✓ Development server started

(sample)$ 
                    

Try Commands

Experiment with commands in your terminal. Use the up/down arrows to view history.

Command Reference

Command Description Example
init Initialize new project $ platform init my-app
build Build the project $ platform build
serve Run local server $ platform serve
config Modify settings $ platform config set theme=dark