-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: use hello-world starter in quick start guide instead of default starter #25914
Merged
Merged
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,13 +22,13 @@ npm install -g gatsby-cli | |
### Create a new site | ||
|
||
```shell | ||
gatsby new gatsby-site | ||
gatsby new hello-world https://github.com/gatsbyjs/gatsby-starter-hello-world | ||
``` | ||
|
||
### Change directories into site folder | ||
|
||
```shell | ||
cd gatsby-site | ||
cd hello-world | ||
``` | ||
|
||
### Start development server | ||
|
@@ -39,7 +39,7 @@ gatsby develop | |
|
||
Gatsby will start a hot-reloading development environment accessible by default at `http://localhost:8000`. | ||
|
||
Try editing the JavaScript pages in `src/pages`. Saved changes will live reload in the browser. | ||
Try editing the home page in `src/pages/index.js`. Saved changes will live reload in the browser. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good tweak! |
||
|
||
### Create a production build | ||
|
||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the thinking behind changing this? (and above ☝️ )
Not against it -- just curious!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just figured it would better signal that this was a smaller quick start. You are literally doing a hello-world and not a full site. Not a necessary part of the change!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm cool with it!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use the Quick Start as a jumping off point for other docs, including the manual recipes section: https://gatsbyjs.org/docs/recipes/
It would be good to consider those use cases in addition to a standalone Quick Start exercise. But I'd defer to @AishaBlake!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point! Best as I can tell, the recipe at
docs/recipes/working-with-plugins.md
would need to be updated.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Many of them list "A Gatsby site" as a prerequisite, and they link to the Quick Start. Likely in other parts of the docs, too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that's phraseology? I don't see that being confusing after this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. I think leaving the new working directory name as is is probably fine and not essential to this test. If we find it's successful and that it would be a useful long term change, we update the directory name here and the name in the links in the current manual recipes section.
As best I can tell, none of the recipes are dependent on having the default starter from the Quick Start so this shouldn't affect users going through those.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Working directory name was reverted to
gatsby-site
on #d0c9544