Admin manual aktualisieren

2024-06-23 08:44:59 +00:00
parent c17b0dd468
commit c82108dbbe

@@ -1,13 +1,57 @@
## Modpack configuration ## Modpack configuration
tba Create a new json file. This must be accessable via the web via a static url as this is the public "modpack config url".
<details><summary>Example</summary>
```json
{
"Maintenance": false,
"Name": "Life in the Woods: Refined",
"Key": "litw-r",
"InstallUrl": "https://myserver.de/myfiles/install.json",
"UpdateUrl": "https://myserver.de/myfiles/updates.json"
}
```
</details>
### Properties
| Name | Description |
| ------ | ------ |
| `Maintenance` | Defines if installations/updates on the clients should be surpressed. Can be used for testing purpose while deploying a new update. |
| `Name` | The name of the modpack. Currently it's not shows anywhere, but that will change in the future. |
| `Key` | A short uniquie key for the modpack. This is used as environment value for checking install keys via the Unleash API. |
| `InstallUrl` | An url to another json file defining some informations needed for installation. Splitted to another file to not blow this info file up. As this file is not needed on each update check it is also separated from the update infos. |
| `UpdateUrl` | An url to another json file defining some informations about updates. Splitted to another file to not blow this info file up. |
## Installation config ## Installation config
tba Create a new json file. This must be accessable via the web via a static url as this is the public "modpack config url".
### Properties
| Name | Description |
| ------ | ------ |
| Version | The version this install config represents. |
| Actions | An array of action objects. |
### Properties of an action
Each action object describes a step to be do.
| Name | Description |
| ------ | ------ |
| | |
| | |
| | |
| | |
| | |
## Update config ## Update config
Create a new json file. This must be accessable via the web via a static url as this is the public "modpack config url".
tba tba
## Setup installation keys ## Setup installation keys