diff --git a/website/source/docs/experimental/index.html.md b/website/source/docs/experimental/index.html.md new file mode 100644 index 000000000..d03e31681 --- /dev/null +++ b/website/source/docs/experimental/index.html.md @@ -0,0 +1,50 @@ +--- +layout: "docs" +page_title: "Vagrant Experimental Feature Flag" +sidebar_current: "experimental" +description: |- + Introduction to Vagrants Experimental Feature Flag +--- + +# Experimental Feature Flag + +Some features that aren't ready for release can be enabled through this feature +flag. There are a couple of different ways of going about enabling these features: + +If you wish to enale every single experimental feature, you can set the flag +to "on" by setting it to `1` like below: + +```shell +export VAGRANT_EXPERIMENTAL="1" +``` + +You can also enable some or many features if there are specific ones you would like, +but don't want every single feature enabled: + +```shell +# Only enables feature_one +export VAGRANT_EXPERIMENTAL="feature_one" +``` + +```shell +# Enables both feature_one and feature_two +export VAGRANT_EXPERIMENTAL="feature_one,feature_two" +``` + +