From f583d0bfaffd599d1950695099b4a9509f36dbc6 Mon Sep 17 00:00:00 2001 From: Bob van Luijt Date: Fri, 11 Jun 2021 21:20:23 +0200 Subject: [PATCH] Minor change with a link to the Weaviate docs (#1180) Super minor change, but in line with other DocumentStore's --- docs/_src/usage/usage/document_store.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_src/usage/usage/document_store.md b/docs/_src/usage/usage/document_store.md index a6692d7b7..dc956bb19 100644 --- a/docs/_src/usage/usage/document_store.md +++ b/docs/_src/usage/usage/document_store.md @@ -128,7 +128,7 @@ document_store = SQLDocumentStore()
The `WeaviateDocumentStore` requires a running Weaviate Server. -You can start a basic instance like this (see Weaviate docs for details): +You can start a basic instance like this (see the [Weaviate docs](https://www.semi.technology/developers/weaviate/current/) for details): ``` docker run -d -p 8080:8080 --env AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED='true' --env PERSISTENCE_DATA_PATH='/var/lib/weaviate' semitechnologies/weaviate:1.4.0 ```