Skip to content

Commit

Permalink
docs: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sergi0g committed Jan 11, 2025
1 parent 4673bc5 commit 4026945
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pages/docs/contributing/adding-a-new-app.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Here is also a table of what a `form_field` object requires:
| **max** | The maximum length for a text or password input | 100 | false |
| **required** | Wheter the form field is required or not | true | yes |
| **env_variable** | The name of the variable you'll use in your `docker-compose.yml` file. | NEXTCLOUD_USERNAME | yes |
| **options** | Options for multiple select | See bellow | false |
| **options** | Options for multiple select | See below | false |
| **encoding** | Used only in addintion to random type. Specify the random value encoding. Can be `base64` or `hex` | base64 | false |

<Callout>
Expand Down
6 changes: 3 additions & 3 deletions pages/docs/getting-started/custom-settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ You can change the default settings by creating a `settings.json` file. The file
| ---------------------- | --------------------------------------------------------------------------- | ---------- | --------------------------------------------- |
| `dnsIp` | The IP address of the DNS server to use. Legacy, kept for compatibility | `string` | `9.9.9.9` |
| `domain` | The domain name to use for the dashboard | `string` | `localhost` |
| `port` | The port to use for the dashboard | `interger` | `80` |
| `sslPort` | The port to use for the dashboard with SSL | `interger` | `443` |
| `port` | The port to use for the dashboard | `integer` | `80` |
| `sslPort` | The port to use for the dashboard with SSL | `integer` | `443` |
| `listenIp` | The IP address to listen on | `string` | `automatically detected` |
| `appDataPath` | The path to use for storing data | `string` | `runtipi/app-data` |
| `localDomain` | The domain name to use for local services | `string` | `tipi.lan` |
| `appsRepoUrl` | The URL to the apps repository | `string` | `https://github.com/runtipi/runtipi-appstore` |
| `postgresPort` | The port to use for the postgres database | `interger` | `5432` |
| `postgresPort` | The port to use for the postgres database | `integer` | `5432` |
| `demoMode` | Start runtipi in demo mode | `boolean` | `false` |
| `guestDashboard` | Allow guest access to the dashboard | `boolean` | `false` |
| `allowErrorMonitoring` | Whether the app will send anonymous crash reports to the runtipi developers | `boolean` | `true` |
Expand Down
2 changes: 1 addition & 1 deletion pages/docs/reference/config-json.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ When adding a new app to runtipi, you need to create a `config.json` file in the
| **no_gui** | Set to true for apps with no GUI. Open button will be hidden | true | no |
| **supported_architectures** | If the app is only available for a specific architecture, you can specify it here. If not given, app will be available for all architectures | ["arm64", "amd64"] | yes |
| **uid**, **gid** | These parameters allow you to give a specific set of permission for the app's data folder. Runtipi will automatically chown the data directory with the provided gid and uid. Both options need to be specified in order to apply | 1000 | no |
| **form_fiels** | Form fields allow you to promt the user for input during the install, like a username or a password | See bellow | yes |
| **form_fiels** | Form fields allow you to promt the user for input during the install, like a username or a password | See below | yes |
| **dynamic** | Use the new `docker-compose.json` to dynamically generate a compose file. See [Dynamic Compose](https://runtipi.io/docs/reference/dynamic-compose) | true | no |
| **deprecated** | If the app is deprecated it won't exist in the app store and it will notify users that is no longer maintained. | false | no |
| **min_tipi_version** | An app may require a newer version of tipi than you already have for some extra feature | v3.0.0 | no |
Expand Down

0 comments on commit 4026945

Please sign in to comment.