From 9bf995e4e6499152a21e3ab37495e7a6d8d6cf8f Mon Sep 17 00:00:00 2001 From: Darin Kotter Date: Mon, 18 Dec 2023 15:26:52 -0700 Subject: [PATCH] Add a blueprint.json file that is used to generate a preview environment --- .wordpress-org/blueprints/blueprint.json | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .wordpress-org/blueprints/blueprint.json diff --git a/.wordpress-org/blueprints/blueprint.json b/.wordpress-org/blueprints/blueprint.json new file mode 100644 index 00000000..42280409 --- /dev/null +++ b/.wordpress-org/blueprints/blueprint.json @@ -0,0 +1,26 @@ +{ + "$schema": "https://playground.wordpress.net/blueprint-schema.json", + "landingPage": "\/wp-admin\/admin.php?page=autoshare-for-twitter", + "preferredVersions": { + "php": "7.4", + "wp": "latest" + }, + "phpExtensionBundles": ["kitchen-sink"], + "steps": [ + { + "step": "login", + "username": "admin", + "password": "password" + }, + { + "step": "installPlugin", + "pluginZipFile": { + "resource": "wordpress.org\/plugins", + "slug": "autoshare-for-twitter" + }, + "options": { + "activate": true + } + } + ] +}