Skip to content

Commit

Permalink
Add version label
Browse files Browse the repository at this point in the history
  • Loading branch information
cremarco committed Jul 25, 2024
1 parent 38ec0bc commit f1e289b
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 20 deletions.
6 changes: 6 additions & 0 deletions docs/external-sti-services.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
sidebar_position: 3
---

# External STI Services

7 changes: 0 additions & 7 deletions docs/external-sti-services/_category_.json

This file was deleted.

1 change: 0 additions & 1 deletion docs/external-sti-services/sti-api.md

This file was deleted.

22 changes: 11 additions & 11 deletions docs/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,47 +56,47 @@ This document describes the configuration file parameters for MantisTable UI. Th

### PostgreSQL

- **POSTGRESQL_URL**
- **`POSTGRESQL_URL`**

```plaintext
DATABASE_URL="postgresql://postgres:password@localhost:port/mantistableui"
```

Specifies the URL for connecting to the PostgreSQL database.

- **POSTGRESQL_PASS**
- **`POSTGRESQL_PASS`**

```plaintext
POSTGRESQL_PASS="password!"
```

The password for the PostgreSQL database user. This should match the password specified in the `DATABASE_URL`.

- **POSTGRES_HOST**
- **`POSTGRES_HOST`**

```plaintext
POSTGRES_HOST="localhost"
```

The hostname or IP address of the PostgreSQL server.

- **POSTGRES_PORT**
- **`POSTGRES_POR`**

```plaintext
POSTGRES_PORT="5432"
```

The port on which the PostgreSQL server is running.

- **POSTGRES_DB**
- **`POSTGRES_DB`**

```plaintext
POSTGRES_DB="mantistableui"
```

The name of the PostgreSQL database to connect to.

- **POSTGRES_USER**
- **`POSTGRES_USER`**

```plaintext
POSTGRES_USER="user"
Expand All @@ -106,15 +106,15 @@ This document describes the configuration file parameters for MantisTable UI. Th

### MongoDB

- **MONGO_INITDB_ROOT_USERNAME**
- **`MONGO_INITDB_ROOT_USERNAME`**

```plaintext
MONGO_INITDB_ROOT_USERNAME="root"
```

The root username for the MongoDB instance.

- **MONGO_INITDB_ROOT_PASSWORD**
- **`MONGO_INITDB_ROOT_PASSWORD`**

```plaintext
MONGO_INITDB_ROOT_PASSWORD="password!"
Expand All @@ -124,7 +124,7 @@ This document describes the configuration file parameters for MantisTable UI. Th

### External STI Services

- **STI_HOST**
- **`STI_HOST`**

```plaintext
STI_HOST="http://local:5042"
Expand All @@ -133,12 +133,12 @@ This document describes the configuration file parameters for MantisTable UI. Th
Specifies the hostname, URL or IP address for an STI service. Replace this with the appropriate URL for your setup.

:::warning
The external Semantic Table Interpretation service must expose APIs as indicated in [sti-api](/docs/external-sti-services/sti-api.md) page.
The external Semantic Table Interpretation service must expose APIs as indicated in [External STI Services](/docs/external-sti-services) page.
:::

### Plugins

- **PLUGINS_PORT**
- **`PLUGINS_PORT`**

```plaintext
PLUGINS_PORT="port"
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Before you begin, ensure you have the following installed on your system:
This command will start the MantisTable UI service in detached mode.

:::warning
For a correct start of MantisTable UI it is necessary to modify the configuration file as indicated in [configuration](configuration.md) page.
For a correct start of MantisTable UI it is necessary to modify the configuration file as indicated in [Configuration](configuration.md) page.
:::

3. **Access the Application**
Expand Down
7 changes: 7 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ const config: Config = {
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
lastVersion: 'current',
versions: {
current: {
label: '1.0.0',
badge :true,
},
},
},
blog: false,
theme: {
Expand Down

0 comments on commit f1e289b

Please sign in to comment.