docs(readme): update README for clarity and consistency

- Translated sections from German to English for better accessibility.
- Enhanced the structure by clearly defining the workspace relationship and local development instructions.
- Improved descriptions for Docker setup and deployment processes to ensure users understand the requirements and context.
- Updated links and formatting for consistency throughout the document.

This commit aims to improve the overall clarity and usability of the README documentation.
This commit is contained in:
Marvin
2026-04-10 02:12:06 +02:00
parent 66b8446d19
commit 8d8fda49c4
227 changed files with 498 additions and 2496 deletions

View File

@@ -1,63 +1,74 @@
# gregWiki
Docusaurus-Site für **gregFramework** / Data-Center-Modding: `docusaurus.config.js`, `sidebars.js`, React unter `src/`, Inhalte unter [`docs/`](./docs/). Öffentliche Route-Basis: **`/wiki`**.
Docusaurus site for **gregFramework** / Data Center modding: `docusaurus.config.js`, `sidebars.js`, React under `src/`, content under [`docs/`](./docs/). Published route base path: **`/wiki`**.
| | |
|:---|:---|
| **Im Workspace** | Pfad `gregFramework/gregWiki/`. Überblick: [gregFramework README](../README.md). |
| **Remote** | [`mleem97/gregWiki`](https://github.com/mleem97/gregWiki) |
---
## Lokale Entwicklung
## Part of gregFramework
This directory is part of the **[gregFramework](https://github.com/mleem97/gregFramework)** workspace. Clone sibling repositories side by side so each project lives at `gregFramework/<RepoName>/`. See the workspace [README](https://github.com/mleem97/gregFramework/blob/master/README.md) for the full layout and migration notes.
**Remote:** [`mleem97/gregWiki`](https://github.com/mleem97/gregWiki) — on-disk path: `gregFramework/gregWiki/`.
---
## Local development
```bash
npm install
npm run start
```
Produktions-Build:
Production build:
```bash
npm run build
```
Optional: Legacy-GitHub-Wiki spiegeln — siehe [`docs/getting-started/documentation-layout.md`](./docs/getting-started/documentation-layout.md) und Skripte `wiki:sync` / `wiki:normalize-i18n`.
Optional: mirror the legacy GitHub Wiki — see [`docs/getting-started/documentation-layout.md`](./docs/getting-started/documentation-layout.md) and scripts `wiki:sync` / `wiki:normalize-i18n`.
---
## Deployment (Coolify / CI)
- **Standard-Branch:** `main`für neue Arbeit und PRs.
- **`master`:** kann für ältere Deployments parallel existieren; in Coolify den Branch auf **`main`** stellen, wenn möglich.
- **Default branch:** `main`use this for new work and PRs.
- **`master`:** may still exist for older deployments; in Coolify, set the branch to **`main`** when possible.
### Coolify (Dockerfile) — `/app/package.json` fehlt
### Coolify (Dockerfile) — missing `/app/package.json`
Das Image erwartet **`package.json` im Image-Root `/app`**. Das passt nur, wenn der **Docker-Build-Kontext** dieses Repo (gregWiki) ist — nicht ein übergeordneter Monorepo-Ordner ohne Anpassung.
The image expects **`package.json` at the image root `/app`**. That only works if the **Docker build context** is this repository (gregWiki), not a parent monorepo folder without adjustments.
| Einstellung | Wert |
|-------------|------|
| **Dockerfile** | `Dockerfile` im gregWiki-Root |
| **Base directory** | **`.`**, wenn nur `gregWiki` geklont wird. Liegt gregWiki **neben** gregCore im gleichen Clone, oft **`gregWiki`** als Unterverzeichnis setzen. |
| **Volumina** | Kein leerer Host-Mount über `/app`, der `package.json` verdeckt. |
| Setting | Value |
|---------|--------|
| **Dockerfile** | `Dockerfile` at the gregWiki root |
| **Base directory** | **`.`** when only `gregWiki` is cloned. If gregWiki sits **next to** gregCore in the same clone, often set **`gregWiki`** as the subdirectory. |
| **Volumes** | Do not use an empty host mount over `/app` that hides `package.json`. |
Symptom: `docker-entrypoint: ERROR: /app/package.json not found`falscher Kontext oder Volume.
Symptom: `docker-entrypoint: ERROR: /app/package.json not found`wrong context or volume.
## Docker (lokal)
---
Build-Kontext = **dieses** Repository (Ordner mit `package.json`):
## Docker (local)
Build context = **this** repository (folder that contains `package.json`):
```bash
cd path/to/gregWiki
docker compose up --build
```
Liegt gregWiki in **gregFramework**, alternativ vom Workspace aus:
If gregWiki lives inside **gregFramework**, from the workspace root:
```bash
cd path/to/gregFramework
docker compose -f docker-compose.gregwiki.yml up --build
```
(`docker-compose.gregwiki.yml` setzt `build.context: ./gregWiki`.)
(`docker-compose.gregwiki.yml` sets `build.context: ./gregWiki`.)
## Siehe auch
---
- [gregFramework README](../README.md) — flaches Layout `gregFramework/{RepoName}/`
- Quellcode und Builds: **gregCore**, `gregMod.*`, `gregExt.*` als eigene Repos (nicht nur diese Doku)
## See also
- [gregFramework README](../README.md) — flat layout `gregFramework/{RepoName}/`
- Source code and builds: **gregCore**, **gregMod.*** , **gregExt.*** as separate repositories (not only this documentation)

View File

@@ -41,7 +41,7 @@ These folders typically sit **next to each other** in a developer workspace (see
## Wiki import (legacy)
Long-form pages mirrored from the GitHub Wiki live under [`docs/legacy/wiki-import/`](../legacy/wiki-import/Home) and remain linked from many topics.
Documentation is maintained in this repository under `docs/`; historical GitHub Wiki content has been retired in favor of curated guides and reference pages.
## .NET projects on disk (`*.csproj`)

View File

@@ -16,4 +16,4 @@ Operational docs for people changing the framework, site, or release pipeline.
- [Docusaurus workflow](/wiki/contributors/docusaurus-workflow) — edit/build the wiki site.
- [Plugin submission audit](/wiki/contributors/plugin-submission-audit) — checklist for new plugins.
Imported guides: [Contribution workflow](/wiki/legacy/wiki-import/Contributors/Guides/Contribution-Workflow).
- [Contributor workshop](./contributor-workshop) — branching, reviews, and release expectations.

View File

@@ -1,7 +1,7 @@
---
title: Mod developers
sidebar_label: Mod developers (hub)
description: Getting started, mod config, debugging — links into legacy wiki-import ModDevs tree.
description: Getting started, mod config, debugging — curated docs for FMF mod authors.
---
# Mod developers
@@ -9,6 +9,8 @@ description: Getting started, mod config, debugging — links into legacy wiki-i
**Mod-Autorinnen und -Autoren** — eigene Mods bauen (Hooks, Konfiguration, Debug). Überblick über alle Rollen: [By audience](/wiki/guides/players/audiences-overview).
- [By audience — intermediates](/wiki/audiences/intermediates) and [professionals](/wiki/audiences/professionals)
- Wiki: [Framework overview](/wiki/mods/framework)
- Imported: [ModDevs](/wiki/legacy/wiki-import/ModDevs/), [Modding guide](/wiki/legacy/wiki-import/Modding-Guide), [Mod config system](/wiki/legacy/wiki-import/Mod-Config-System)
- Imported: [Standalone mods](/wiki/legacy/wiki-import/StandaloneMods)
- [Framework overview](/wiki/mods/framework) — runtime capabilities and repo layout
- [FMF hooks](/wiki/framework/fmf-hooks) — hook surface (generated article)
- [FMF hook naming](/wiki/reference/fmf-hook-naming) and [hooks catalog](/wiki/reference/fmf-hooks-catalog)
- [Contributor workshop](/wiki/guides/contributors/contributor-workshop) — builds, CI, and PRs
- [Mods](/wiki/mods/) — gameplay mods (`FMF.*`) and release pages

View File

@@ -7,16 +7,16 @@ description: Vier Rollen — Spieler, Moddevs, Contributor, Sponsoren — plus E
# By audience
Die Dokumentation richtet sich an **vier Hauptrollen** (und an Erfahrungsstufen darunter). Wähle, was zu dir passt — die Sprache der meisten Seiten ist **Englisch**, mit deutschsprachigen Importen unter `legacy/wiki-import/` wo vorhanden.
Die Dokumentation richtet sich an **vier Hauptrollen** (und an Erfahrungsstufen darunter). Die meisten Seiten sind **Englisch**; ausgewählte Einstiege gibt es auch auf **Deutsch** (z. B. in dieser Übersicht und in `i18n/de`).
## Die vier Rollen
| Rolle | Für wen? | Einstieg |
|--------|----------|----------|
| **Spieler** (End users) | Installation, Mods nutzen, Troubleshooting, FAQ | [End users (hub)](./overview) [End user wiki](/wiki/legacy/wiki-import/EndUser/), [Data center FAQ](/wiki/legacy/wiki-import/DataCenterFAQ/) |
| **Mod-Entwickler** (Mod developers) | Mods bauen, Hooks, Konfiguration, Debug | [Mod developers (hub)](../mod-developers/overview) → [ModDevs wiki](/wiki/legacy/wiki-import/ModDevs/), [Framework](/wiki/mods/framework) |
| **Contributor** (Repo & Framework) | PRs, Doku, Plugins, CI, Design | [Contributors (workflow)](../contributors/topics-overview) → [Contributors wiki](/wiki/legacy/wiki-import/Contributors/), [Repo inventory](/wiki/contributors/repo-inventory) |
| **Sponsorinnen & Sponsoren** | Unterstützung, Transparenz, rechtlicher Kontext | [Sponsors (hub)](../sponsors/overview) → [Sponsors (EN)](/wiki/legacy/wiki-import/Sponsors), [Sponsoren (DE)](/wiki/legacy/wiki-import/Sponsoren) |
| **Spieler** (End users) | Installation, Mods nutzen, Troubleshooting | [End users (hub)](./overview) · [End-user workshop](./enduser-workshop) |
| **Mod-Entwickler** (Mod developers) | Mods bauen, Hooks, Konfiguration, Debug | [Mod developers (hub)](../mod-developers/overview) · [Framework](/wiki/mods/framework) |
| **Contributor** (Repo & Framework) | PRs, Doku, Plugins, CI | [Contributors (workflow)](../contributors/topics-overview) · [Repo inventory](/wiki/contributors/repo-inventory) |
| **Sponsorinnen & Sponsoren** | Unterstützung, Transparenz | [Sponsors (hub)](../sponsors/overview) |
## Erfahrungsstufen (alle Rollen)
@@ -27,4 +27,3 @@ Die Dokumentation richtet sich an **vier Hauptrollen** (und an Erfahrungsstufen
## Thematische Übersicht
- [Topics hub](/wiki/topics/) — Security, Multiplayer, Assets, FFI, Roadmap, Meta.
- Importierte Legacy-Guides: [Legacy wiki import](/wiki/topics/wiki-import/overview).

View File

@@ -1,7 +1,7 @@
---
title: End users
sidebar_label: End users (hub)
description: FAQs, install paths, troubleshooting — plus legacy wiki-import entry points.
description: FAQs, install paths, troubleshooting — entry point for players using mods.
---
# End users
@@ -9,5 +9,6 @@ description: FAQs, install paths, troubleshooting — plus legacy wiki-import en
**Spielerinnen und Spieler** — Mods installieren und spielen, ohne am Framework mitzuentwickeln. Überblick über alle Rollen: [By audience](/wiki/guides/players/audiences-overview).
- [By audience — newbies](/wiki/audiences/newbies)
- Imported: [End user index](/wiki/legacy/wiki-import/EndUser/), [Data center FAQ](/wiki/legacy/wiki-import/DataCenterFAQ/), [Known incompatibilities](/wiki/legacy/wiki-import/Known-Incompatibilities)
- Imported: [End user release notes](/wiki/legacy/wiki-import/EndUser/End-User-Release)
- [End-user workshop](/wiki/guides/players/enduser-workshop) — install, updates, Workshop
- [Workshop uploader (tool)](/wiki/tools/workshop-uploader) — publishing and project metadata
- [Release channels](/wiki/reference/release-channels) — Steam vs GitHub discovery

View File

@@ -1,7 +1,7 @@
---
title: Sponsors & support
sidebar_label: Sponsors (hub)
description: Für Unterstützerinnen und Unterstützer — Sponsoring, Transparenz, englische Detailseiten.
description: Für Unterstützerinnen und Unterstützer — Sponsoring, Transparenz, Anlaufstellen.
---
# Sponsors & support
@@ -10,14 +10,9 @@ Die Community finanziert u. a. Infrastruktur, Tools und Zeit für Pflege der Dok
## Kurzüberblick
- **Englisch (ausführlich):** [Sponsors (EN)](/wiki/legacy/wiki-import/Sponsors) — Optionen (z.B. GitHub Sponsors), Nutzung von Mitteln, rechtlicher Kontext.
- **Deutsch:** [Sponsoren](/wiki/legacy/wiki-import/Sponsoren) — gleiche Themen, wo vorhanden auf Deutsch.
- **Dank:** [Community Thanks](/wiki/legacy/wiki-import/Community-Thanks) (Import), [Changelog & versions](/wiki/legacy/wiki-import/Changelog-Versions) für Release-Transparenz.
## Verknüpft
- [Security & legal](/wiki/topics/security-legal/overview) — Lizenz, Haftungsausschlüsse, Brief an die Entwickler.
- [License & legal (EN)](/wiki/legacy/wiki-import/License-Legal) — rechtlicher Rahmen des Projekts.
- **GitHub:** [mleem97/gregFramework](https://github.com/mleem97/gregFramework) — Sponsoring- und Community-Richtlinien stehen in `README`, `LICENSE` und `CONTRIBUTING`.
- **Transparenz:** Release-Notes und [Release-Kanäle](/wiki/reference/release-channels) beschreiben, wie Builds verteilt werden.
- **Rechtliches:** [Security & legal](/wiki/topics/security-legal/overview) — verbindliche Texte liegen im Repository, nicht nur im Wiki.
:::note Zielgruppe
Diese Seite richtet sich an **Sponsorinnen, Sponsoren und Fördernde**. Spielerinnen und Spieler finden den Einstieg unter [End users](/wiki/guides/players/overview); Mod-Autoren unter [Mod developers](/wiki/guides/mod-developers/overview); Mitwirkende am Repo unter [Contributors (workflow)](/wiki/guides/contributors/topics-overview).

View File

@@ -11,10 +11,10 @@ This documentation describes the **current split layout**: a local `gregFramewor
| Audience | Start here |
|----------|------------|
| **Players** — install, play, troubleshoot | [End users (hub)](./guides/players/overview.md) · [End user wiki (import)](./legacy/wiki-import/EndUser/) |
| **Mod developers** — build mods, hooks, debugging | [Mod developers (hub)](./guides/mod-developers/overview.md) · [ModDevs wiki (import)](./legacy/wiki-import/ModDevs/) · [Framework](./mods/framework.md) |
| **Contributors** — PRs, docs, plugins, CI | [Contributors (workflow)](./guides/contributors/topics-overview.md) · [Contributors wiki (import)](./legacy/wiki-import/Contributors/) |
| **Sponsors** — support & transparency | [Sponsors (hub)](./guides/sponsors/overview.md) · [Sponsors (EN)](./legacy/wiki-import/Sponsors) · [Sponsoren (DE)](./legacy/wiki-import/Sponsoren) |
| **Players** — install, play, troubleshoot | [End users (hub)](./guides/players/overview.md) · [End-user workshop](./guides/players/enduser-workshop.md) |
| **Mod developers** — build mods, hooks, debugging | [Mod developers (hub)](./guides/mod-developers/overview.md) · [Framework](./mods/framework.md) · [FMF hooks](/wiki/framework/fmf-hooks) |
| **Contributors** — PRs, docs, plugins, CI | [Contributors (workflow)](./guides/contributors/topics-overview.md) · [Contributor workshop](./guides/contributors/contributor-workshop.md) |
| **Sponsors** — support & transparency | [Sponsors (hub)](./guides/sponsors/overview.md) · [GitHub Sponsors](https://github.com/sponsors) (project policies in repo `LICENSE` / `CONTRIBUTING`) |
**Experience tracks** (newbies → pros): [By audience](./guides/players/audiences-overview.md) → [Newbies](/wiki/audiences/newbies), [Intermediates](/wiki/audiences/intermediates), [Professionals](/wiki/audiences/professionals).

View File

@@ -1,12 +0,0 @@
---
title: Legacy content
sidebar_label: Legacy
description: Imported GitHub Wiki mirror and deprecation policy.
---
# Legacy content
Material under **[`legacy/wiki-import/`](./wiki-import/Home)** is the **GitHub Wiki mirror** (synced from `.wiki/`). It is searchable and versioned, but **curated** documentation lives under `framework/`, `guides/`, `reference/`, and `workspace/`.
- **How sync works:** [Legacy wiki import process](../topics/wiki-import/overview)
- **Entry:** [Home](./wiki-import/Home)

View File

@@ -1,9 +0,0 @@
---
title: AI-USAGE
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Architecture
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: AssetExport
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Bekannte Inkompatibilitäten
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Brief an WASEKU (Data Center)
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Changelog & Versionen
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Changelog & Versions EN
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Community Thanks
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Contributors (Debug) EN
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,4 +0,0 @@
{
"label": "Contributors (typo path — prefer Contributors/)",
"position": 60,
}

View File

@@ -1,9 +0,0 @@
---
title: Contributors-Debug
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Contributors (Debug) EN
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Contribution-Workflow
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,3 +0,0 @@
{
"key": "wiki-import-contributors-guides"
}

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Naming-Convention
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,3 +0,0 @@
{
"key": "wiki-import-contributors-reference"
}

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,3 +0,0 @@
{
"key": "wiki-import-contributors-troubleshooting"
}

View File

@@ -1,9 +0,0 @@
---
title: overview
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,4 +0,0 @@
{
"label": "Contributors",
"position": 30,
}

View File

@@ -1,9 +0,0 @@
---
title: Data Center FAQ
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Frequently Asked Questions Part 1
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Frequently Asked Questions Part 2
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Frequently Asked Questions Part 3
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Patch Panel
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,4 +0,0 @@
{
"label": "Data Center FAQ",
"position": 50,
}

View File

@@ -1,9 +0,0 @@
---
title: Device-Reference
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: End-User-Release
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: End-User (Release) EN
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Framework-Dependency
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,3 +0,0 @@
{
"key": "wiki-import-enduser-guides"
}

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Disclaimer
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,3 +0,0 @@
{
"key": "wiki-import-enduser-reference"
}

View File

@@ -1,9 +0,0 @@
---
title: FAQ
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,3 +0,0 @@
{
"key": "wiki-import-enduser-troubleshooting"
}

View File

@@ -1,9 +0,0 @@
---
title: overview
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,4 +0,0 @@
{
"label": "End users",
"position": 10,
}

View File

@@ -1,9 +0,0 @@
---
title: FFI-Bridge-Reference
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Framework-Features-Use-Cases
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Glossar
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Glossary EN
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: HOOK-NAMING-CONVENTION
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: HOOKS
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Home
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Known Incompatibilities EN
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Letter to WASEKU EN
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: License & Legal EN
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Lizenz & Rechtliches
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Lua-FFI-Start-Developing
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: MODIAPI_FINAL_STATUS
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: MODIAPI_INTEGRATION_SUMMARY
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: MelonLoader
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Mod-Config-System
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Mod-Developer-Debug
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Getting-Started
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,3 +0,0 @@
{
"key": "wiki-import-moddevs-guides"
}

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Mod-Developer (Debug) EN
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Modding-Guide
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Hook-Event-Reference
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,3 +0,0 @@
{
"key": "wiki-import-moddevs-reference"
}

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,3 +0,0 @@
{
"key": "wiki-import-moddevs-troubleshooting"
}

View File

@@ -1,9 +0,0 @@
---
title: overview
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,4 +0,0 @@
{
"label": "Mod developers",
"position": 20,
}

View File

@@ -1,9 +0,0 @@
---
title: Modding-Guide
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: ModigAPI-Consolidation
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,58 +0,0 @@
# Greg Wiki (Docusaurus)
This folder is configured as a Docusaurus site using the existing Markdown wiki files.
## Local run
```bash
npm install
npm run start
```
## Production build
```bash
npm run build
npm run serve
```
## Coolify deployment notes
- Build command: `npm install ; npm run build`
- Start command: `npm run serve -- --host 0.0.0.0 --port $PORT`
- Port: `3000` (or use Coolify `$PORT`)
If you use Docker deployment mode in Coolify, this repo includes a `Dockerfile`.
## Multi-repo wiki import
This workspace can import GitHub wiki pages for every repository of one or more owners.
- Config file: `wiki-import.config.json`
- Import script: `scripts/import-wikis.mjs`
### Configure owners
Edit `wiki-import.config.json`:
```json
{
"owners": [
{
"name": "mleem97",
"destination": "Repos/mleem97"
}
],
"includeArchived": false,
"perPage": 100
}
```
### Run import
```bash
npm run import:wikis:dry
npm run import:wikis
```
Imported docs are placed under owner/repo folders such as `Repos/mleem97/<repo>/` and automatically appear in the Docusaurus sidebar.

View File

@@ -1,9 +0,0 @@
---
title: README_MODDING
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: ROADMAP
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Release Assets and Templates
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,6 +0,0 @@
{
"label": "mleem97",
"position": 1,
"collapsed": true,
"collapsible": true
}

View File

@@ -1,9 +0,0 @@
---
title: Repository Status 2026-04-04
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Setup
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Sponsoren
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Sponsors EN
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Standalone Mods
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Steamworks-P2P-Multiplayer-Roadmap
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: TASKLIST
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

View File

@@ -1,3 +0,0 @@
{
"key": "wiki-import-techref-guides"
}

View File

@@ -1,9 +0,0 @@
---
title: Index
description: English translation pending; use the Deutsch locale for the full legacy page.
---
:::note
This page is available in **German** in the legacy wiki import. Use the language menu (**Deutsch**) for the full text, or contribute an English translation under `docs/legacy/wiki-import`.
:::

Some files were not shown because too many files have changed in this diff Show More