{
    "$schema": "https://playground.wordpress.net/blueprint-schema.json",
    "landingPage": "/wp-admin/",
    "preferredVersions": {
        "php": "8.3",
        "wp": "latest"
    },
    "login": true,
    "steps": [
        {
            "step": "defineWpConfigConsts",
            "consts": {
                "FOOPLUGINS_FREEMIUS_ANONYMOUS": true
            }
        },
        {
            "step": "setSiteOptions",
            "options": {
                "blogname": "FooGallery Playground",
                "blogdescription": "A demo playground showcasing what FooGallery can do",
                "show_on_front": "page"
            }
        },
        {
            "step": "resetData"
        },
        {
			"step": "writeFile",
			"path": "/wordpress/wp-content/plugins/0-plugin.php",
			"data": {
				"resource": "url",
				"url": "https://raw.githubusercontent.com/fooplugins/foogallery-blueprint/refs/heads/main/plugin.php"
			}
		},
		{
			"step": "activatePlugin",
			"pluginName": "FooGallery Demo Plugin",
			"pluginPath": "0-plugin.php"
		},
        {
            "step": "installPlugin",
            "pluginData": {
                "resource": "wordpress.org/plugins",
                "slug": "foogallery"
            },
            "options": {
                "activate": true
            }
        },
        {
            "step": "wp-cli",
            "command": "wp post create --post_type=page --post_status=publish --post_title=\"Gallery Showcase\" --post_content=\"<h2>Our Responsive Gallery</h2>[foogallery id=12]<h2>Image Viewer Gallery</h2>[foogallery id=13]<h2>Justified Gallery</h2>[foogallery id=14]<h2>Masonry Gallery</h2>[foogallery id=15]<h2>Portfolio Gallery</h2>[foogallery id=16]<p>another varition of portfolio gallery</p>[foogallery id=17]<h2>Single Thumbnail Gallery</h2>[foogallery id=18]<h2>Carousel Gallery</h2>[foogallery id=19]<p>another carousel variation</p>[foogallery id=20]\" --porcelain"
        },
        {
            "step": "setSiteOptions",
            "options": {
                "show_on_front": "page",
                "page_on_front": 1,
                "foogallery": {
                    "pro_promo_disabled": "on"
                }
            }
        }
    ]
}