From 80052af978d328cdd1cc4ec8c50224aa941cfc48 Mon Sep 17 00:00:00 2001 From: Tiffany Brown Date: Tue, 21 Apr 2020 16:11:41 -0700 Subject: [PATCH 1/7] Glossary, encyclopedia: Add Infrastructure As Code article. Updated glossary.md with a definition/excerpt and link to new entry. Also updated doc-links.yaml with link to new entry. --- docs/docs/glossary.md | 4 + docs/docs/glossary/infrastructure-as-code.md | 84 ++++++++++++++++++++ www/src/data/sidebars/doc-links.yaml | 2 + 3 files changed, 90 insertions(+) create mode 100644 docs/docs/glossary/infrastructure-as-code.md diff --git a/docs/docs/glossary.md b/docs/docs/glossary.md index 8d326a8359df2..3f5f6321443ea 100644 --- a/docs/docs/glossary.md +++ b/docs/docs/glossary.md @@ -186,6 +186,10 @@ Once a site has been [built](#build) by Gatsby and loaded in a web browser, [cli As part of its data layer and [build](#build) process, Gatsby will automatically **infer** a [schema](#schema), or type-based structure, based on available data sources (e.g. Markdown file nodes, WordPress posts, etc.). More control can be gained over this structure by using Gatsby's [Schema Customization API](/docs/schema-customization/). +### [Infrastructure As Code](/docs/glossary/infrastructure-as-code/) + +Infrastructure As Code is the practice of using configuration files and scripts to automate the process of setting up your development, testing, and production environments. + ## J ### [JAMStack](/docs/glossary/jamstack) diff --git a/docs/docs/glossary/infrastructure-as-code.md b/docs/docs/glossary/infrastructure-as-code.md new file mode 100644 index 0000000000000..779f518edfe2b --- /dev/null +++ b/docs/docs/glossary/infrastructure-as-code.md @@ -0,0 +1,84 @@ +--- +title: Infrastructure as Code +disableTableOfContents: true +--- + +Learn what Infrastructure as Code means, and how you can use can use code to standardize and automate your Gatsby site. + +## What is Infrastructure As Code? + +_Infrastructure As Code_ is the practice of managing your development, testing, and production environments using configuration files or scripts. Provisioning and configuring environments individually can introduce errors or inconsistencies. You may, for example, find yourself running different versions of Node on your laptop and your production servers. Infrastructure As Code mimimizes this kind of drift and lets you automate the process of provisioning environments. + +Your configuration file describes what resources your project requires. If you're building an API, for example, you might create a configuration file that says, "Please install Node 12.16.2, npm 6.14.4, Express 4.17.1, and PostgreSQL 12.2 for Ubuntu Linux." For a Gatsby project, your configuration file may add plugins and themes. + +Configuration files, like other code files, are text. That means you can use version control software to store them and track changes to the environment. In short, infrastructure as code: + +- Creates consistent environments. +- Saves time that would otherwise be spent setting up environments. +- Reduces the risk of errors caused by mismatched environments. +- Makes it easy to automate tasks. + +## Automating Gatsby site development with Gatsby Recipes + +[Gatsby Recipes](https://www.gatsbyjs.org/blog/2020-04-15-announcing-gatsby-recipes/) applies the infrastructure as code concept to front-end development. With Gatsby Recipes, you can automate common site building tasks, such as adding a plugin or test suite. + +To get started with Gatsby Recipes, upgrade to the latest version of Gatsby and the Gatsby CLI. + +```shell +npm install -g gatsby-cli@latest +npm install gatsby@latest +``` + +You can see the list of available recipes by using `gatsby recipes`. Use your up or down arrow keys to select a recipe, and press the _Enter_ or _Return_ key to run it. + +![A screenshot that contains a list of Gatsby recipes.](https://www.gatsbyjs.org/static/abf1101318022126e896af6222fb1cb7/b04e4/recipes-screenshot.png) + +Gatsby Recipes use [MDX](/docs/glossary/mdx/). They're a readable mix of Markdown and React. MDX is an extension of [Markdown](/docs/glossary/markdown/) that lets you use [JSX](/docs/glossary#jsx) in Markdown-formatted documents. Here's the [Styled Components](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-recipes/recipes/styled-components.mdx) recipe. + +```markdown +# Setup Styled Components + +[Styled Components](https://styled-components.com/) is visual primitives for the component age. +Use the best bits of ES6 and CSS to style your apps without stress 💅 + +--- + +Install necessary NPM packages + + + + + +--- + +Install the Styled Components plugin in gatsby-config.js + + + +--- + +Sweet, now it's ready to go. + +Let's also write out an example page you can use to play +with Styled Components. + + + +--- + +Read more about Styled Components on the official docs site: + +https://styled-components.com/ +``` + +You can also write and run your own recipes, or run recipes that were created by and shared with the community. Pass the path or URL of the recipe as an arguement. For example, to run a local Gatsby recipe, use `gatsby recipes ./name-of-your-recipe.mdx`. To run a remote recipe, use `gatsby recipes https://example.com/community-made-recipe.mdx`. + +Gatsby Recipes help you save time and reduce configuration errors by automating the set up process. + +## Learn more + +- [Announcing Gatsby Recipes](https://www.gatsbyjs.org/blog/2020-04-15-announcing-gatsby-recipes/) +- [Developing Recipes](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-recipes/README.md#developing-recipes) from the Gatsby repository diff --git a/www/src/data/sidebars/doc-links.yaml b/www/src/data/sidebars/doc-links.yaml index c1ed1a0ff9d4a..0df41f0e63172 100644 --- a/www/src/data/sidebars/doc-links.yaml +++ b/www/src/data/sidebars/doc-links.yaml @@ -778,6 +778,8 @@ link: /docs/glossary/hydration/ - title: JAMStack link: /docs/glossary/jamstack/ + - title: Infrastructure As Code + link: /docs/glossary/infrastructure-as-code/ - title: Markdown link: /docs/glossary/markdown/ - title: MDX From 6f6dfcbb5650fab42a4bf376dd9e37fc21dbf85f Mon Sep 17 00:00:00 2001 From: Tiffany Brown Date: Thu, 30 Apr 2020 12:56:29 -0700 Subject: [PATCH 2/7] Update infrastructure-as-code.md: Fix typos, make as lowercase. Also switch to relative internal links. --- docs/docs/glossary/infrastructure-as-code.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/docs/glossary/infrastructure-as-code.md b/docs/docs/glossary/infrastructure-as-code.md index 779f518edfe2b..e6bff45cb88c3 100644 --- a/docs/docs/glossary/infrastructure-as-code.md +++ b/docs/docs/glossary/infrastructure-as-code.md @@ -3,24 +3,24 @@ title: Infrastructure as Code disableTableOfContents: true --- -Learn what Infrastructure as Code means, and how you can use can use code to standardize and automate your Gatsby site. +Learn what Infrastructure as Code means, and how you can use code to standardize and automate your Gatsby site. -## What is Infrastructure As Code? +## What is Infrastructure as Code? -_Infrastructure As Code_ is the practice of managing your development, testing, and production environments using configuration files or scripts. Provisioning and configuring environments individually can introduce errors or inconsistencies. You may, for example, find yourself running different versions of Node on your laptop and your production servers. Infrastructure As Code mimimizes this kind of drift and lets you automate the process of provisioning environments. +_Infrastructure as Code_, or IaC, is the practice of managing your development, testing, and production environments using configuration files or scripts. Provisioning and configuring environments individually can introduce errors or inconsistencies. You may, for example, find yourself running different versions of Node on your laptop and your production servers. Infrastructure as Code minimizes this kind of drift and lets you automate the process of provisioning environments. Your configuration file describes what resources your project requires. If you're building an API, for example, you might create a configuration file that says, "Please install Node 12.16.2, npm 6.14.4, Express 4.17.1, and PostgreSQL 12.2 for Ubuntu Linux." For a Gatsby project, your configuration file may add plugins and themes. -Configuration files, like other code files, are text. That means you can use version control software to store them and track changes to the environment. In short, infrastructure as code: +Configuration files, like other code files, are text. That means you can use version control software to store them and track changes to the environment. In short, IaC: - Creates consistent environments. - Saves time that would otherwise be spent setting up environments. - Reduces the risk of errors caused by mismatched environments. -- Makes it easy to automate tasks. +- Simplifies the automation of tasks. ## Automating Gatsby site development with Gatsby Recipes -[Gatsby Recipes](https://www.gatsbyjs.org/blog/2020-04-15-announcing-gatsby-recipes/) applies the infrastructure as code concept to front-end development. With Gatsby Recipes, you can automate common site building tasks, such as adding a plugin or test suite. +[Gatsby Recipes](/blog/2020-04-15-announcing-gatsby-recipes/) applies the infrastructure as code concept to front-end development. With Gatsby Recipes, you can automate common site building tasks, such as adding a plugin or test suite. To get started with Gatsby Recipes, upgrade to the latest version of Gatsby and the Gatsby CLI. @@ -31,7 +31,7 @@ npm install gatsby@latest You can see the list of available recipes by using `gatsby recipes`. Use your up or down arrow keys to select a recipe, and press the _Enter_ or _Return_ key to run it. -![A screenshot that contains a list of Gatsby recipes.](https://www.gatsbyjs.org/static/abf1101318022126e896af6222fb1cb7/b04e4/recipes-screenshot.png) +![A screenshot that contains a list of Gatsby recipes.](/static/abf1101318022126e896af6222fb1cb7/b04e4/recipes-screenshot.png) Gatsby Recipes use [MDX](/docs/glossary/mdx/). They're a readable mix of Markdown and React. MDX is an extension of [Markdown](/docs/glossary/markdown/) that lets you use [JSX](/docs/glossary#jsx) in Markdown-formatted documents. Here's the [Styled Components](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-recipes/recipes/styled-components.mdx) recipe. @@ -74,11 +74,11 @@ Read more about Styled Components on the official docs site: https://styled-components.com/ ``` -You can also write and run your own recipes, or run recipes that were created by and shared with the community. Pass the path or URL of the recipe as an arguement. For example, to run a local Gatsby recipe, use `gatsby recipes ./name-of-your-recipe.mdx`. To run a remote recipe, use `gatsby recipes https://example.com/community-made-recipe.mdx`. +You can also write and run your own recipes, or run recipes that were created by and shared with the community. Pass the path or URL of the recipe as an argument. For example, to run a local Gatsby recipe, use `gatsby recipes ./name-of-your-recipe.mdx`. To run a remote recipe, use `gatsby recipes https://example.com/community-made-recipe.mdx`. Gatsby Recipes help you save time and reduce configuration errors by automating the set up process. ## Learn more -- [Announcing Gatsby Recipes](https://www.gatsbyjs.org/blog/2020-04-15-announcing-gatsby-recipes/) +- [Announcing Gatsby Recipes](/blog/2020-04-15-announcing-gatsby-recipes/) - [Developing Recipes](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-recipes/README.md#developing-recipes) from the Gatsby repository From 4c8401e9669282703fbabe58fddd41182f076238 Mon Sep 17 00:00:00 2001 From: Tiffany Brown Date: Thu, 30 Apr 2020 12:58:49 -0700 Subject: [PATCH 3/7] Updated infrastructure-as-code.md: Change phrasing. --- docs/docs/glossary/infrastructure-as-code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/glossary/infrastructure-as-code.md b/docs/docs/glossary/infrastructure-as-code.md index e6bff45cb88c3..fa7b2275a684b 100644 --- a/docs/docs/glossary/infrastructure-as-code.md +++ b/docs/docs/glossary/infrastructure-as-code.md @@ -33,7 +33,7 @@ You can see the list of available recipes by using `gatsby recipes`. Use your up ![A screenshot that contains a list of Gatsby recipes.](/static/abf1101318022126e896af6222fb1cb7/b04e4/recipes-screenshot.png) -Gatsby Recipes use [MDX](/docs/glossary/mdx/). They're a readable mix of Markdown and React. MDX is an extension of [Markdown](/docs/glossary/markdown/) that lets you use [JSX](/docs/glossary#jsx) in Markdown-formatted documents. Here's the [Styled Components](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-recipes/recipes/styled-components.mdx) recipe. +Gatsby Recipes use [MDX](/docs/glossary/mdx/). They're a readable mix of Markdown and React. MDX is an extension of [Markdown](/docs/glossary/markdown/) that lets you use [JSX](/docs/glossary#jsx) in Markdown-formatted documents. As an example, check out the [Styled Components](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-recipes/recipes/styled-components.mdx) recipe. ```markdown # Setup Styled Components From fc09694764292e745a9ac249af7deb93eb3dbeba Mon Sep 17 00:00:00 2001 From: Tiffany Brown Date: Thu, 30 Apr 2020 13:07:29 -0700 Subject: [PATCH 4/7] Move infrastructure-as-code.md to infrastructure-as-code/index.md Add recipes-screenshot.png --- .../index.md} | 4 ++-- .../recipes-screenshot.png | Bin 0 -> 8737 bytes 2 files changed, 2 insertions(+), 2 deletions(-) rename docs/docs/glossary/{infrastructure-as-code.md => infrastructure-as-code/index.md} (93%) create mode 100644 docs/docs/glossary/infrastructure-as-code/recipes-screenshot.png diff --git a/docs/docs/glossary/infrastructure-as-code.md b/docs/docs/glossary/infrastructure-as-code/index.md similarity index 93% rename from docs/docs/glossary/infrastructure-as-code.md rename to docs/docs/glossary/infrastructure-as-code/index.md index fa7b2275a684b..f5612f480cab8 100644 --- a/docs/docs/glossary/infrastructure-as-code.md +++ b/docs/docs/glossary/infrastructure-as-code/index.md @@ -31,9 +31,9 @@ npm install gatsby@latest You can see the list of available recipes by using `gatsby recipes`. Use your up or down arrow keys to select a recipe, and press the _Enter_ or _Return_ key to run it. -![A screenshot that contains a list of Gatsby recipes.](/static/abf1101318022126e896af6222fb1cb7/b04e4/recipes-screenshot.png) +![A screenshot that contains a list of Gatsby recipes.](recipes-screenshot.png) -Gatsby Recipes use [MDX](/docs/glossary/mdx/). They're a readable mix of Markdown and React. MDX is an extension of [Markdown](/docs/glossary/markdown/) that lets you use [JSX](/docs/glossary#jsx) in Markdown-formatted documents. As an example, check out the [Styled Components](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-recipes/recipes/styled-components.mdx) recipe. +Gatsby Recipes use [MDX](/docs/glossary/mdx/). They're a readable mix of Markdown and React. MDX is an extension of [Markdown](/docs/glossary/markdown/) that lets you use [JSX](/docs/glossary#jsx) in Markdown-formatted documents. As an example, check out the [Styled Components recipe](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-recipes/recipes/styled-components.mdx). ```markdown # Setup Styled Components diff --git a/docs/docs/glossary/infrastructure-as-code/recipes-screenshot.png b/docs/docs/glossary/infrastructure-as-code/recipes-screenshot.png new file mode 100644 index 0000000000000000000000000000000000000000..f793151c4a63e2adbb236d246ec8dc5081f69757 GIT binary patch literal 8737 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 Y%FE!&&ujX)Gaq<*T1J|UK Date: Fri, 1 May 2020 09:46:13 -0700 Subject: [PATCH 5/7] infrastructure-as-code/index.md: Change phrasing. --- docs/docs/glossary/infrastructure-as-code/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/glossary/infrastructure-as-code/index.md b/docs/docs/glossary/infrastructure-as-code/index.md index f5612f480cab8..4fbb3bc35befa 100644 --- a/docs/docs/glossary/infrastructure-as-code/index.md +++ b/docs/docs/glossary/infrastructure-as-code/index.md @@ -16,7 +16,7 @@ Configuration files, like other code files, are text. That means you can use ver - Creates consistent environments. - Saves time that would otherwise be spent setting up environments. - Reduces the risk of errors caused by mismatched environments. -- Simplifies the automation of tasks. +- Lays the groundwork for automation. ## Automating Gatsby site development with Gatsby Recipes From 4f26f3088b12718b99380b236f99265fceee1667 Mon Sep 17 00:00:00 2001 From: Aisha Blake Date: Tue, 5 May 2020 17:23:02 -0400 Subject: [PATCH 6/7] Shorten screenshot alt text --- docs/docs/glossary/infrastructure-as-code/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/glossary/infrastructure-as-code/index.md b/docs/docs/glossary/infrastructure-as-code/index.md index 4fbb3bc35befa..66adcbac5d26b 100644 --- a/docs/docs/glossary/infrastructure-as-code/index.md +++ b/docs/docs/glossary/infrastructure-as-code/index.md @@ -31,7 +31,7 @@ npm install gatsby@latest You can see the list of available recipes by using `gatsby recipes`. Use your up or down arrow keys to select a recipe, and press the _Enter_ or _Return_ key to run it. -![A screenshot that contains a list of Gatsby recipes.](recipes-screenshot.png) +![partial list of available Gatsby recipes](recipes-screenshot.png) Gatsby Recipes use [MDX](/docs/glossary/mdx/). They're a readable mix of Markdown and React. MDX is an extension of [Markdown](/docs/glossary/markdown/) that lets you use [JSX](/docs/glossary#jsx) in Markdown-formatted documents. As an example, check out the [Styled Components recipe](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-recipes/recipes/styled-components.mdx). From 514d52ca6f76afb8347792d9216f2990dba7561c Mon Sep 17 00:00:00 2001 From: Aisha Blake Date: Tue, 5 May 2020 17:29:55 -0400 Subject: [PATCH 7/7] Update doc-links.yaml --- www/src/data/sidebars/doc-links.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/src/data/sidebars/doc-links.yaml b/www/src/data/sidebars/doc-links.yaml index 0df41f0e63172..80ce142c8bb0a 100644 --- a/www/src/data/sidebars/doc-links.yaml +++ b/www/src/data/sidebars/doc-links.yaml @@ -778,7 +778,7 @@ link: /docs/glossary/hydration/ - title: JAMStack link: /docs/glossary/jamstack/ - - title: Infrastructure As Code + - title: Infrastructure as Code link: /docs/glossary/infrastructure-as-code/ - title: Markdown link: /docs/glossary/markdown/