From 37fcb5a95f0de2f7fd26f571fcac556655ab0f1d Mon Sep 17 00:00:00 2001 From: Jesse Leite Date: Wed, 31 Jan 2024 14:09:23 -0500 Subject: [PATCH 1/2] Recommend new `pro:enable` command instead. --- content/collections/tips/how-to-enable-statamic-pro.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/collections/tips/how-to-enable-statamic-pro.md b/content/collections/tips/how-to-enable-statamic-pro.md index 4428a6ad9..ddab4e8c2 100644 --- a/content/collections/tips/how-to-enable-statamic-pro.md +++ b/content/collections/tips/how-to-enable-statamic-pro.md @@ -5,10 +5,10 @@ title: 'How to Enable Statamic Pro' intro: 'A fresh Statamic install starts in Solo edition mode. Here''s how to enable Pro mode and unlock every feature Statamic has.' template: page --- -A fresh Statamic install starts in Solo edition mode. You can enable Pro at any time in your `config/statamic/editions.php` file: +A fresh Statamic install starts in Solo edition mode. You can enable Pro at any time by running: -``` php -'pro' => true, +``` shell +php please pro:enable ``` Once you've opted in, many additional features become be available. From cfc47fa4337ffaecd6ea1e36920a5fc6ca1f9af9 Mon Sep 17 00:00:00 2001 From: Jesse Leite Date: Wed, 31 Jan 2024 14:37:20 -0500 Subject: [PATCH 2/2] Bring back Joshua's tweak. --- content/collections/tips/how-to-enable-statamic-pro.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/collections/tips/how-to-enable-statamic-pro.md b/content/collections/tips/how-to-enable-statamic-pro.md index ddab4e8c2..9a73b38a9 100644 --- a/content/collections/tips/how-to-enable-statamic-pro.md +++ b/content/collections/tips/how-to-enable-statamic-pro.md @@ -5,12 +5,14 @@ title: 'How to Enable Statamic Pro' intro: 'A fresh Statamic install starts in Solo edition mode. Here''s how to enable Pro mode and unlock every feature Statamic has.' template: page --- -A fresh Statamic install starts in Solo edition mode. You can enable Pro at any time by running: +A fresh Statamic install starts in Solo edition mode. You can enable Pro in your `.env` file at any time by running: ``` shell php please pro:enable ``` +You can also set `pro` to `true` in `config/statamic/editions.php` for all environments (which you may need to do for older installations of Statamic where the above command doesn't exist). + Once you've opted in, many additional features become be available. ## Trying Pro Mode {#trial-mode}