Add newer CoalGov update

This commit is contained in:
CoalGov Deploy
2026-07-11 02:06:53 +00:00
parent dd69ab17a5
commit 963cdd2d9d
39 changed files with 2763 additions and 43 deletions

24
property-web/README.md Normal file
View File

@@ -0,0 +1,24 @@
# CoalGov Property Web
Small stdlib Python web app for the CoalGov SQLite database.
Features:
- `/coalgov webtoken` login support through the `web_tokens` table.
- Browser map backed by the live BlueMap web UI.
- BlueMap marker sync for claims and land regions.
- Owned/manageable claims panel.
- Rename claim display names.
- Transfer claims to known CoalGov players by name or UUID.
- Pay existing claim tax debt from the logged-in player's CoalGov balance.
Run on the server:
```bash
cd /opt/mcworldgen-server/property-web
COALGOV_DB=/opt/mcworldgen-server/data/plugins/CoalGov/coalgov.db \
COALGOV_WEB_PORT=8088 \
COALGOV_BLUEMAP_URL=http://example.org:8100/ \
COALGOV_BLUEMAP_MARKERS_PATH=/opt/bluemap/bluemap/web/maps/overworld/live/markers.json \
python3 app.py
```