{
  "$schema": "https://playground.wordpress.net/blueprint-schema.json",
  "landingPage": "/wp-admin/admin.php?page=webinarignition-dashboard",
  "preferredVersions": {
    "php": "8.1",
    "wp": "latest"
  },
  "features": {
    "networking": true
  },
  "phpExtensionBundles": [
    "kitchen-sink"
  ],
  "steps": [
    {
      "step": "login",
      "username": "admin",
      "password": "password"
    },
    {
      "step": "installPlugin",
      "pluginZipFile": {
        "resource": "wordpress.org/plugins",
        "slug": "woocommerce"
      },
      "options": {
        "activate": true
      }
    },
    {
      "step": "installPlugin",
      "pluginZipFile": {
        "resource": "wordpress.org/plugins",
        "slug": "webinar-ignition"
      },
      "options": {
        "activate": true
      }
    },
    {
      "step": "installTheme",
      "themeZipFile": {
        "resource": "wordpress.org/themes",
        "slug": "twentytwentyfour"
      },
      "options": {
        "activate": true
      }
    },
    {
      "step": "setSiteOptions",
      "options": {
        "blogname": "WebinarIgnition Demo",
        "blogdescription": "Live & Automated Webinars for WooCommerce",
        "permalink_structure": "/%postname%/"
      }
    },
    {
      "step": "runPHP",
      "code": "<?php require_once 'wordpress/wp-load.php'; if (class_exists('WooCommerce')) { $product = array('post_title' => 'Premium Webinar Course', 'post_content' => 'Get access to our exclusive webinar training and learn how to create high-converting sales presentations.', 'post_status' => 'publish', 'post_type' => 'product'); $product_id = wp_insert_post($product); if ($product_id) { update_post_meta($product_id, '_regular_price', '97'); update_post_meta($product_id, '_price', '97'); update_post_meta($product_id, '_virtual', 'yes'); update_post_meta($product_id, '_sold_individually', 'yes'); } } ?>"
    },
    {
      "step": "runPHP",
      "code": "<?php require_once 'wordpress/wp-load.php'; $page_id = wp_insert_post(array('post_title' => 'Welcome to WebinarIgnition', 'post_content' => '<!-- wp:heading --><h2>Transform Your WordPress Site Into a Webinar Platform</h2><!-- /wp:heading --><!-- wp:paragraph --><p>WebinarIgnition lets you run unlimited <strong>live webinars</strong>, <strong>automated webinars</strong>, and <strong>evergreen webinars</strong> directly on WordPress.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Key Features:</h3><!-- /wp:heading --><!-- wp:list --><ul><li>Sell WooCommerce products inside webinars (no redirect = no checkout loss)</li><li>Boost conversion rates from 10% to 55%</li><li>Auto-fill customer details for seamless checkout</li><li>Unlimited CTAs &amp; automation tools</li><li>No monthly platform fees</li><li>No attendee limits</li></ul><!-- /wp:list --><!-- wp:paragraph --><p>Visit the <a href=\"/wp-admin/admin.php?page=webinarignition-dashboard\">WebinarIgnition dashboard</a> to create your first webinar!</p><!-- /wp:paragraph -->', 'post_status' => 'publish', 'post_type' => 'page')); if ($page_id) { update_option('page_on_front', $page_id); update_option('show_on_front', 'page'); } ?>"
    }
  ]
}