Community wiki and guide to Multi-Users in Middle-earth — a free text-based multiplayer RPG set in Tolkien's world.
- Browse to any page in
docs/pages/on GitHub - Click the pencil icon (Edit this file)
- Make your changes and click Commit changes → Create a new branch and pull request
- A preview build will be triggered automatically; a maintainer will review and merge
Use Docker. All development should be done via Docker to keep the environment consistent with CI.
Dev server with live reload:
docker compose up devThe site will be available at http://localhost:5174/wiki/.
Production build (mirrors CI exactly):
docker compose up --build wikiThe site will be available at http://localhost:4173/wiki/.
Always update packages inside the container so the lock file stays CI-compatible:
docker run --rm -v "$(pwd):/app" -w /app node:22 npm install <package>
git add package.json package-lock.json
git commit -m "chore: update dependencies"- VitePress — static site generator
- GitHub Actions — CI/CD
- GitHub Pages — hosting