Quickstart
This guide will help you set up FRAME in minutes.
Prerequisites
Section titled “Prerequisites”FRAME is designed for UNIX systems. Windows users are recommended to use WSL2.
Before you begin, make sure you have the following installed locally:
- Node.js: v24.18.0 or later (use fnm or nvm to manage versions)
- pnpm: v11. How to install.
- Docker: Required for the local database and services. How to install.
Installation
Section titled “Installation”-
Clone the repository:
Terminal window git clone git@github.com:pablousx/frame.gitcd FRAME -
Install dependencies:
Terminal window pnpm install
Configuration
Section titled “Configuration”-
Run the initial setup: This script applies recommended git settings for the repository, installs Playwright, and configures environment secrets:
Terminal window pnpm frame setup -
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 devExplore
./appsand each app’spackage.jsonto discover other available applications. General rule for running commands in FRAME (monorepo):Terminal window pnpm -F <app-directory> <command> -
Open http://localhost:4300 in your browser to view this application.