From c88d716dfc30c3602842e06a0f627571ef1a4293 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Sun, 17 Mar 2024 11:21:23 +0100 Subject: [PATCH] introduce blueprint.json for WP playground preview --- assets/blueprints/blueprint.json | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 assets/blueprints/blueprint.json diff --git a/assets/blueprints/blueprint.json b/assets/blueprints/blueprint.json new file mode 100644 index 0000000..9d94e07 --- /dev/null +++ b/assets/blueprints/blueprint.json @@ -0,0 +1,36 @@ +{ + "$schema": "https://playground.wordpress.net/blueprint-schema.json", + "landingPage": "/wp-admin/options-general.php?page=statify-blacklist", + "features": { + "networking": true + }, + "steps": [ + { + "step": "login", + "username": "admin", + "password": "password" + }, + { + "step": "installPlugin", + "pluginZipFile": { + "resource": "wordpress.org/plugins", + "slug": "statify" + } + }, + { + "step": "activatePlugin", + "pluginPath": "statify/statify.php" + }, + { + "step": "installPlugin", + "pluginZipFile": { + "resource": "wordpress.org/plugins", + "slug": "statify-blacklist" + } + }, + { + "step": "activatePlugin", + "pluginPath": "statify-blacklis/statify-blacklist.php" + } + ] +}