From b5dae2771cf9b7284f9324edab3201eac95dd9b7 Mon Sep 17 00:00:00 2001 From: Lokesh Date: Mon, 9 Dec 2024 15:22:10 +0100 Subject: [PATCH] doc: update CLI tool documentation for starting surreal sql interactive shell (#1056) --- src/content/doc-surrealdb/cli/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/doc-surrealdb/cli/index.mdx b/src/content/doc-surrealdb/cli/index.mdx index 248cedb5a..7757af1b2 100644 --- a/src/content/doc-surrealdb/cli/index.mdx +++ b/src/content/doc-surrealdb/cli/index.mdx @@ -29,7 +29,7 @@ Unless you specify otherwise, the CLI will start a database in memory that serve In another window, you can then open up an interactive shell to make queries using the `surreal sql` command. ```bash -surreal sql --endpoint http://localhost:8000 --namespace ns --database db --pretty +surreal sql --endpoint http://localhost:8000 --namespace ns --database db --username root --password root --pretty ``` > [!WARNING]