@@ -5,9 +5,11 @@ icon: 'code'
5
5
---
6
6
## Overview
7
7
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 .
9
9
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/ )
11
13
12
14
## Setup Instructions
13
15
@@ -39,7 +41,6 @@ docker volume create memory_store_data
39
41
docker volume create temporal-db-data
40
42
docker volume create prometheus_data
41
43
docker volume create seadweedfs_data
42
- docker volume create memories
43
44
```
44
45
<Info >
45
46
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
52
53
Run the project in single-tenant mode:
53
54
54
55
``` 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
56
57
```
57
58
58
59
> ** 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
61
62
Run the project in multi-tenant mode:
62
63
63
64
``` 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
65
66
```
66
67
67
68
> ** 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