Skip to content

Commit 94ed17b

Browse files
authored
Clearer path to follow immediately following the Quick Start tutorial (#1108)
1 parent dd330e5 commit 94ed17b

File tree

6 files changed

+16
-13
lines changed

6 files changed

+16
-13
lines changed

.changeset/6b8fc862/changes.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "releases": [{ "name": "@keystone-alpha/website", "type": "patch" }], "dependents": [] }

.changeset/6b8fc862/changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[docs] Clearer path to follow immediately following the Quick Start tutorial

docs/quick-start/README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: Introduction
77

88
## Welcome
99

10-
This quick start guide will get you up and running with a fresh new Keystone application in just a few easy commands.
10+
This quick start guide will get you up and running with a fresh new KeystoneJS application in just a few easy commands.
1111

1212
With just _5 minutes_, this is what you're going to build:
1313

@@ -34,7 +34,7 @@ cd my-app
3434
npm start
3535
```
3636

37-
Congratulations, you are now running your very own Keystone application!
37+
Congratulations, you are now running your very own KeystoneJS application!
3838
To visit your running application (a simple todo list), visit
3939

4040
<pre>
@@ -43,23 +43,24 @@ To visit your running application (a simple todo list), visit
4343
</code>
4444
</pre>
4545

46-
Your application also has an admin UI, which lets you directly manipulate the data in your database.
46+
Your application also has an Admin UI, which lets you directly manipulate the data in your database
4747

4848
<pre>
4949
<code>
5050
<a href="http://localhost:3000/admin/">http://localhost:3000/admin</a>
5151
</code>
5252
</pre>
5353

54-
The [Admin UI Tutorial](../tutorials/admin-ui.md) will walk you through the functionality provided by the Admin UI.
55-
56-
Both your application and the admin UI are being powered by a GraphQL API.
57-
Keystone provides a web interface for this API at
54+
Both your application and the admin UI are powered by a GraphQL API.
55+
KeystoneJS provides a web interface for this API at
5856

5957
<pre>
6058
<code>
6159
<a href="http://localhost:3000/admin/graphiql">http://localhost:3000/admin/graphiql</a>
6260
</code>
6361
</pre>
6462

65-
The [Introduction To GraphQL](../tutorials/intro-to-graphql.md) tutorial will guide you through the basics of using GraphQL to interact with your Keystone system.
63+
## Up Next
64+
65+
- [Using the KeystoneJS Admin UI](../tutorials/admin-ui.md)
66+
- [Introduction To KeystoneJS's GraphQL API](../tutorials/intro-to-graphql.md)

docs/tutorials/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Introduction
55

66
# Tutorials
77

8-
Welcome to the KeystoneJS tutorials. These tutorials are designed to introduce you to the various concepts within Keystone and take you through worked examples.
8+
Welcome to the KeystoneJS tutorials. These tutorials are designed to introduce you to the various concepts within KeystoneJS and take you through worked examples.
99

10-
- [Using The Admin UI](./admin-ui.md)
11-
- [An Introduction To GraphQL](./intro-to-graphql.md)
10+
- [Using the KeystoneJS Admin UI](./admin-ui.md)
11+
- [Introduction To KeystoneJS's GraphQL API](./intro-to-graphql.md)

docs/tutorials/admin-ui.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ section: tutorials
33
title: Admin UI
44
---
55

6-
# Admin UI
6+
# Using the KeystoneJS Admin UI
77

88
In this tutorial we will take you through the features of the KeystoneJS Admin UI, and show you how to use them to manage your application.

docs/tutorials/intro-to-graphql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ section: tutorials
33
title: GraphQL
44
---
55

6-
# Intro To GraphQL
6+
# An Introduction To KeystoneJS's GraphQL API
77

88
In this tutorial we will introduce you to GraphQL and show you show to use the KeystoneJS GraphQL API to interact with your system.

0 commit comments

Comments
 (0)