Skip to content

Commit 2cac942

Browse files
nkoesterlanguitar
andcommitted
docs: apply suggestions from code review
Co-authored-by: Johannes Wienke <[email protected]>
1 parent aa16a54 commit 2cac942

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

docs/global/modules/core/pages/howto/mps-model-server-plugin.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
= How-To run the light `model-server` in MPS as plugin
1+
= How-To run the light `model-server` in MPS as a plugin
22
:navtitle: mps-model-server-plugin
33

44

@@ -9,7 +9,7 @@ NOTE: More information on the component in general can be found in the xref:core
99
[IMPORTANT]
1010
====
1111
A light model-server does not provide the full features as an independent `model-server` instance will.
12-
More *advanced features* will not work with this light version (e.g. modelix specific repositories/branches, or the xref:howto/metrics.adoc[metrics]).
12+
More *advanced features* will not work with this light version (e.g., modelix specific repositories/branches, or the xref:howto/metrics.adoc[metrics]).
1313
1414
If you want the full capabilities of the `model-server`, check out xref:howto/usage-model-api-gen-gradle.adoc[how to start it standalone].
1515
====

docs/global/modules/core/pages/howto/usage-model-client-v2.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ Once set up, creating an instance that loads the entire model from the server ca
3030

3131
[source, kotlin]
3232
--
33-
3433
val client = ModelClientV2.builder()
3534
.url("http://localhost:28101/v2")
3635
.build()

docs/global/modules/core/pages/howto/usage-model-server.adoc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ NOTE: To run a light version of the `model-sever`, check out xref:core:howto/mp
88
== Backends: In Memory vs. Database
99

1010
The `model-server` will by default require a database backend.
11-
The `-jdbcconf` flag allows you to provide a custom jdbc configuration file.
11+
The `-jdbcconf` flag allows you to provide a custom JDBC configuration file.
1212
While this setup is ideal for deployment, it might not what you need in the beginning.
1313
During development or to perform tests, it is recommended to start the `model-server` with in-memory storage.
1414
This can be achieved by adding the `-inmemory` flag to the executable.
@@ -21,8 +21,8 @@ The following list gives an overview of the many ways to run a `model-server`:
2121

2222
=== 1. Docker
2323

24-
We publish a docker container of the `model-server` over on https://hub.docker.com/r/modelix/model-server/tags[Docker Hub^].
25-
To run the model-server container with the in memory backend, simply call the following.
24+
We publish a Docker container of the `model-server` over on https://hub.docker.com/r/modelix/model-server/tags[Docker Hub^].
25+
To run the model-server container with the in-memory backend, simply call the following.
2626
[source, shell]
2727
--
2828
$ docker run --rm -p 28101:28101 modelix/modelix-model:latest -inmemory
@@ -97,7 +97,6 @@ services:
9797

9898
volumes:
9999
model-server-db: {}
100-
dashboard-db: {}
101100
--
102101

103102
.Content of `init-database.sql`

0 commit comments

Comments
 (0)