Skip to content

Commit

Permalink
Update CLI output for quickstart docs (#7295)
Browse files Browse the repository at this point in the history
@1st1 I'm going through the docs like we discussed. I will open small
PRs as I come across things that have changed.
  • Loading branch information
willingc authored Dec 5, 2024
1 parent 8509fa1 commit 19c858a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/intro/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ up your first EdgeDB instance. You should see something like this:
Checking EdgeDB versions...
Specify the version of EdgeDB to use with this project [default: 5.x]:
> 5.x
Specify branch name: [default: main]:
> main
┌─────────────────────┬───────────────────────────────────────────────┐
│ Project directory │ ~/path/to/quickstart │
│ Project config │ ~/path/to/quickstart/edgedb.toml │
Expand Down Expand Up @@ -189,11 +191,12 @@ This did a couple things.

Let's connect to our new instance! Run ``edgedb`` in your terminal to open an
interactive REPL to your instance. You're now connected to a live EdgeDB
instance running on your computer! Try executing a simple query:
instance running on your computer! Try executing a simple query (``select 1 + 1;``) after the
REPL prompt (``quickstart:main>``):

.. code-block:: edgeql-repl
db> select 1 + 1;
quickstart:main> select 1 + 1;
{2}
Run ``\q`` to exit the REPL. More interesting queries are coming soon,
Expand Down

0 comments on commit 19c858a

Please sign in to comment.