Tibi Getting Started

Use this page to get the local Tibi site running and identify the package directories used during day-to-day development.

Last modified: July 9, 2026

If you are choosing where to start, use Start Here For Editors or Start Here For Developers.

link Requirements

Follow the global Getting started guide first. Tibi development also expects:

link Local Site

The site root is:

sites/tibi

Install site dependencies from the site directory:

cd sites/tibi
composer install

link Theme Development

The Tibi theme lives in:

packages/wordpress/themes/tibi

Build or watch theme assets:

cd packages/wordpress/themes/tibi
npm install
npm run start
npm run build

link Plugin Development

The main Tibi plugins are:

packages/wordpress/plugins/tibi-core
packages/wordpress/plugins/tibi-block-library

Build plugin assets where a package.json exists:

cd packages/wordpress/plugins/tibi-block-library
npm install
npm run start
npm run build

link Useful Checks