Skip to content

Commit ba35b0b

Browse files
Merge pull request #1091 from julep-ai/d/fix
docs: minor fix
2 parents e9a13e8 + b7b79d4 commit ba35b0b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

documentation/docs/advanced/localsetup.mdx

+6-5
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@ icon: 'code'
55
---
66
## Overview
77

8-
This guide will help you set up Julep locally. Before we setup any of the components, we would you to install Docker.
8+
Juelp is designed to be run locally with the help of Docker. This guide will help you set up Julep locally.
99

10-
You can find the installation instructions [here](https://docs.docker.com/get-docker/).
10+
## Prerequisites
11+
12+
- [Docker](https://docs.docker.com/get-docker/)
1113

1214
## Setup Instructions
1315

@@ -39,7 +41,6 @@ docker volume create memory_store_data
3941
docker volume create temporal-db-data
4042
docker volume create prometheus_data
4143
docker volume create seadweedfs_data
42-
docker volume create memories
4344
```
4445
<Info>
4546
The volumes are used to store the data for the Grafana, Memory Store (Timescale DB), Temporal DB, Prometheus, and SeadweedFS, and Memories respectively.
@@ -52,7 +53,7 @@ You can run the project in two different modes: **Single Tenant** or **Multi-Ten
5253
Run the project in single-tenant mode:
5354

5455
```bash
55-
docker compose --env-file .env --profile temporal-ui --profile single-tenant --profile embedding-cpu --profile self-hosted-db up --force-recreate --build --watch
56+
docker compose --env-file .env --profile temporal-ui --profile single-tenant --profile self-hosted-db --profile blob-store --profile temporal-ui-public up --build --force-recreate --watch
5657
```
5758

5859
> **Note:** In single-tenant mode, you can interact with the SDK directly without the need for the API KEY.
@@ -61,7 +62,7 @@ docker compose --env-file .env --profile temporal-ui --profile single-tenant --p
6162
Run the project in multi-tenant mode:
6263

6364
```bash
64-
docker compose --env-file .env --profile temporal-ui --profile multi-tenant --profile embedding-cpu --profile self-hosted-db up --force-recreate --build --watch
65+
docker compose --env-file .env --profile temporal-ui --profile multi-tenant --profile self-hosted-db --profile blob-store --profile temporal-ui-public up --build --force-recreate --watch
6566
```
6667

6768
> **Note:** In multi-tenant mode, you need to generate a JWT token locally that act as an API KEY to interact with the SDK.

0 commit comments

Comments
 (0)