From e054d79a640791279414f65d018c5ee5bee26c42 Mon Sep 17 00:00:00 2001 From: Birgit Pauli-Haack Date: Tue, 9 Apr 2024 15:53:06 +0200 Subject: [PATCH 1/2] Update build-your-first-blueprint.md minor changes, It might just be a change of simple to basic... --- docs/build-your-first-blueprint.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/build-your-first-blueprint.md b/docs/build-your-first-blueprint.md index ba8c35c..43a67ea 100644 --- a/docs/build-your-first-blueprint.md +++ b/docs/build-your-first-blueprint.md @@ -1,6 +1,6 @@ ## Build your first Blueprint -Let's build a simple Blueprint that +Let's build a basic Blueprint that 1. Creates a new WordPress site 2. Sets the site title to "My first Blueprint" @@ -17,7 +17,7 @@ Let's start by creating a `blueprint.json` file with the following contents: {} ``` -It may seem like nothing is happening, but this Blueprint already spins a WordPress site using the latest major version. +It may seem like nothing is happening, but this Blueprint already spins up a WordPress site with the latest major version. [
Run Blueprint
](https://playground.wordpress.net/#{}) @@ -113,7 +113,7 @@ The site should now look like the screenshot below: ### Resources -The `themeZipFile` defines a [resource](https://wordpress.github.io/wordpress-playground/blueprints-api/resources/)—a reference to an external file required to complete the step. Playground supports different types of resources, including `url`, `wordpress.org/themes`, `wordpress.org/plugins`, `vfs`, or `literal`. The example uses the `wordpress.org/themes` resource, which requires a `slug` identical to the one used in WordPress theme directory: +The `themeZipFile` defines a [resource](https://wordpress.github.io/wordpress-playground/blueprints-api/resources/) and referrences an external file required to complete the step. Playground supports different types of resources, including `url`, `wordpress.org/themes`, `wordpress.org/plugins`, `vfs`, or `literal`. The example uses the `wordpress.org/themes` resource, which requires a `slug` identical to the one used in WordPress theme directory: In this case, `https://wordpress.org/themes//` becomes `https://wordpress.org/themes/adventurer/`. From 95e5410a999b9aeb5573f4a1ccf1725dd2cf4623 Mon Sep 17 00:00:00 2001 From: Birgit Pauli-Haack Date: Thu, 11 Apr 2024 11:56:01 +0200 Subject: [PATCH 2/2] Update incoporating feedback change basic to elementary bullet list of resources. --- docs/build-your-first-blueprint.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/build-your-first-blueprint.md b/docs/build-your-first-blueprint.md index 43a67ea..351fcca 100644 --- a/docs/build-your-first-blueprint.md +++ b/docs/build-your-first-blueprint.md @@ -1,6 +1,6 @@ ## Build your first Blueprint -Let's build a basic Blueprint that +Let's build an elementary Blueprint that 1. Creates a new WordPress site 2. Sets the site title to "My first Blueprint" @@ -113,7 +113,14 @@ The site should now look like the screenshot below: ### Resources -The `themeZipFile` defines a [resource](https://wordpress.github.io/wordpress-playground/blueprints-api/resources/) and referrences an external file required to complete the step. Playground supports different types of resources, including `url`, `wordpress.org/themes`, `wordpress.org/plugins`, `vfs`, or `literal`. The example uses the `wordpress.org/themes` resource, which requires a `slug` identical to the one used in WordPress theme directory: +The `themeZipFile` defines a [resource](https://wordpress.github.io/wordpress-playground/blueprints-api/resources/) and referrences an external file required to complete the step. Playground supports different types of resources, including +- `url`, +- `wordpress.org/themes`, +- `wordpress.org/plugins`, +- `vfs`(virtual file system), or +- `literal`. + +The example uses the `wordpress.org/themes` resource, which requires a `slug` identical to the one used in WordPress theme directory: In this case, `https://wordpress.org/themes//` becomes `https://wordpress.org/themes/adventurer/`.