Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Quickstart

This guide will help you set up FRAME in minutes.

FRAME is designed for UNIX systems. Windows users are recommended to use WSL2.

Before you begin, make sure you have the following installed locally:

  1. Clone the repository:

    Terminal window
    git clone git@github.com:pablousx/frame.git
    cd FRAME
  2. Install dependencies:

    Terminal window
    pnpm install
  1. Run the initial setup: This script applies recommended git settings for the repository, installs Playwright, and configures environment secrets:

    Terminal window
    pnpm frame setup
  2. Start a FRAME application (for example, this Astro template): Run the following command to start this Astro + Starlight template:

    Terminal window
    pnpm -F apps/astro dev

    Explore ./apps and each app’s package.json to discover other available applications. General rule for running commands in FRAME (monorepo):

    Terminal window
    pnpm -F <app-directory> <command>
  3. Open http://localhost:4300 in your browser to view this application.