You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,22 +23,22 @@ We do this to avoid legal issues and disputes, and to stay compliant with releva
23
23
24
24
Don't get overwhelmed by the number of docker-compose files. Here's a quick overview:
25
25
26
-
-`docker-compose.yml` is the simplest one that spins up frontend, app-server, and postgres. Good for quickstarts.
26
+
-`docker-compose.yml` is the simplest one that spins up frontend, app-server, clickhouse, and postgres. Good for quickstarts.
27
27
-`docker-compose-full.yml` is the one you want to use for running the full stack locally. This is the best
28
28
for self-hosting.
29
29
-`docker-compose-local-dev-full.yml` full file for local development. To be used when you make changes
30
30
to the backend. It will only run the dependency services (postgres, qdrant, clickhouse, rabbitmq).
31
31
You will need to run `cargo r`, `pnpm run dev`, and `python server.py` manually.
32
32
-`docker-compose-local-dev.yml` is the one you want to use for local development. It will only
33
-
run postgres and app-server. Good for frontend changes.
33
+
run postgres, clickhouse, and app-server. Good for frontend changes.
34
34
-`docker-compose-local-build.yml` will build the services from the source and run them in production mode. This is good for self-hosting with your own changes,
35
35
or for testing the changes after developing on your own and before opening a PR.
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ cd lmnr
48
48
docker compose up -d
49
49
```
50
50
51
-
This will spin up a lightweight version of the stack with Postgres, app-server, and frontend. This is good for a quickstart
51
+
This will spin up a lightweight version of the stack with Postgres, clickhouse, app-server, and frontend. This is good for a quickstart
52
52
or for lightweight usage. You can access the UI at http://localhost:5667 in your browser.
53
53
54
54
For production environment, we recommend using our [managed platform](https://www.lmnr.ai/projects) or `docker compose -f docker-compose-full.yml up -d`.
0 commit comments