You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
777 B

11 months ago
  1. # How to setup a local (or cloud) Weaviate Vector Database
  2. [Get a Weaviate Cloud instance](https://weaviate.io/developers/weaviate/quickstart#create-an-instance).
  3. [Set up Weaviate locally on Docker](https://weaviate.io/developers/weaviate/installation/docker-compose).
  4. Fill out the variables in the "Vector Database" tab of settings. Select Weaviate as your provider and fill out the appropriate fields
  5. with the information from either of the above steps.
  6. ### How to get started _Development mode only_
  7. After setting up either the Weaviate cloud or local dockerized instance you just need to set these variable in `.env.development` or defined them at runtime via the UI.
  8. ```
  9. VECTOR_DB="weaviate"
  10. WEAVIATE_ENDPOINT='http://localhost:8080'
  11. WEAVIATE_API_KEY= # Optional
  12. ```