Skip to content
Greg Bowler edited this page Jun 25, 2026 · 4 revisions

Blueprints are starter projects for new WebEngine applications. They save setup time by giving us a project that already has some structure, layout, or example functionality in place.

Blueprint directory

The list of official blueprints are available at https://www.php.gt/blueprints/ or in the terminal with the gt command.

Type gt create in a terminal, and after choosing a name for your new project, it will list out the official blueprints to start from. Choosing a blueprint by selecting its number will clone the blueprint project and set up any config for your instance of the project.

It's possible to specify the blueprint in a single command:

gt create my-app --blueprint blog

Let's check out the application architecture page to build readable and maintainable projects.

Clone this wiki locally