From aefa29b84373293365c00bf72df6f63a34fe0efa Mon Sep 17 00:00:00 2001 From: David Price Date: Wed, 26 Apr 2023 18:07:39 -0700 Subject: [PATCH] Update cli-commands.md (#8143) --- docs/docs/cli-commands.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/docs/cli-commands.md b/docs/docs/cli-commands.md index b84e6b9fe68d..257ac8fa9014 100644 --- a/docs/docs/cli-commands.md +++ b/docs/docs/cli-commands.md @@ -399,6 +399,29 @@ You can pass any flags to the command and use them within your script: See [this how to](how-to/background-worker.md) for an example of using exec to run a background worker. +## experimental + +Set up and run experimental features. + +Some caveats: +- these features do not follow SemVer (may be breaking changes in minor and patch releases) +- these features may be deprecated or removed (anytime) +- your feedback is wanted and necessary! + +For more information, including details about specific features, see this Redwood Forum category: +[Experimental Features](https://community.redwoodjs.com/c/experimental-features/25) + +**Available Experimental Features** +View all that can be _set up_: +``` +yarn redwood experimental setup --help +``` + +View all that can be _run_: +``` +yarn redwood experimental --help +``` + ## generate (alias g) Save time by generating boilerplate code.