indifferentketchup 3336b2f661 feat: build-suffix labels for [add] actions; chain RV Interior Expansion after Project RV B42
Label format change ('!missing' actions):
  - "add TrueMoozic (renamed from truemusic)" → "add TrueMoozic B42"
  - "add truemusic"                           → "add truemusic B41"
Build context lives in the suffix; the alias-rename hint was redundant
because the user already sees the original mod_id in the warning text.

RV Interior Expansion ordering (B42):
  PROJECTRVInterior42 → RVInteriorExpansion → RVInteriorExpansionPart2
  map folders: map_distanciado → map_aquatsar → rvupdate → rv2 → Muldraugh, KY
Authors didn't declare loadAfter in mod.info; new modpack rules file
data/modpack_rules/rv_expansion.txt establishes the chain. Triggers fire
when either expansion wsid (3618427553 / 3622163276) is in input.
2026-05-04 16:21:35 +00:00

sortof

Project Zomboid mod load-order sorter for dedicated servers. Paste workshop IDs or a collection URL; get back the WorkshopItems=, Mods=, and Map= lines for servertest.ini.

Stack

  • FastAPI + asyncpg, Python 3.12.
  • Postgres 16 (Docker).
  • DepotDownloader for fetching mod.info / map.info from each cached workshop item.
  • Vanilla JSX + index.html, no build step (Babel-standalone in-browser).

Setup

docker compose up -d sortof_db

python3.12 -m venv api/.venv
api/.venv/bin/pip install -r api/requirements.txt

python3.12 -m venv worker/.venv
worker/.venv/bin/pip install -r worker/requirements.txt

.env next to docker-compose.yml:

POSTGRES_USER=sortof
POSTGRES_PASSWORD=<random>
POSTGRES_DB=sortof
SORTOF_CORS_ORIGINS=http://127.0.0.1:8801

Set DD_PATH to the DepotDownloader binary, then:

api/.venv/bin/uvicorn app:app --host 127.0.0.1 --port 8801
worker/.venv/bin/python drain.py

Layout

api/      FastAPI service, sort engine, response adapters
worker/   drain worker (DepotDownloader + mod.info parser)
frontend/ index.html + JSX
init/     Postgres bootstrap migrations (run on first boot)
data/     checked-in JSON config (e.g., pz_versions.json)
docs/     specs, plans
Description
No description provided
Readme 1.4 MiB
Languages
Python 58.1%
JavaScript 28%
HTML 12.4%
PLpgSQL 1.5%