Migrate from pip-install-e + setuptools to a uv workspace with a
committed uv.lock for deterministic deps. Switch both members to
hatchling, and move package sources into nested standard layout
(l4d2host/l4d2host/, l4d2web/l4d2web/) so builds work from a
read-only source tree — setuptools wrote egg-info to source under
the old layout, which broke uv sync on the root-owned /opt/left4me/src.
Local dev install: `pip install -e ./l4d2host -e ./l4d2web` -> `uv sync`.
.envrc switches from `layout python python3.13` to `use uv`. Python
pinned to 3.13 via .python-version.
l4d2web now declares its cross-dep on l4d2host explicitly via
[tool.uv.sources] (workspace = true). l4d2web/alembic.ini and
l4d2web/alembic/ stay at the project root (standard alembic layout).
Test fixes:
- tests/__init__.py added to both test dirs so pytest doesn't shadow
l4d2host as a namespace package via outer-dir walk.
- 3 CWD-relative paths in tests (l4d2web/static/css/{tokens,layout}.css
and js/sse.js) anchored to Path(__file__) so they survive layout
changes.
- Two test_install.py tests now monkeypatch HOME to tmp_path so they
stop silently mutating ~/.steam/sdk32 on every run.
628 tests pass under sandboxed `uv run pytest`.
Per docs/superpowers/plans/2026-05-15-uv-workspace-execution.md;
prereq for the ckn-bw bundle's uv-sync action (queued).
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
50 lines
1.7 KiB
HTML
50 lines
1.7 KiB
HTML
{% set can_edit = g.user.admin or (overlay and overlay.type == 'workshop' and overlay.user_id == g.user.id) %}
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>Steam ID</th>
|
|
<th>Title</th>
|
|
<th>Filename</th>
|
|
<th>Size</th>
|
|
<th>Updated</th>
|
|
<th>Status</th>
|
|
{% if can_edit %}<th></th>{% endif %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in workshop_items %}
|
|
<tr>
|
|
<td>
|
|
{% if item.preview_url %}
|
|
<img src="{{ item.preview_url }}" alt="" width="48" height="48" loading="lazy">
|
|
{% endif %}
|
|
</td>
|
|
<td><a href="https://steamcommunity.com/sharedfiles/filedetails/?id={{ item.steam_id }}" target="_blank" rel="noopener">{{ item.steam_id }}</a></td>
|
|
<td>{{ item.title }}</td>
|
|
<td class="muted">{{ item.filename }}</td>
|
|
<td class="muted">{{ item.file_size }}</td>
|
|
<td class="muted">{{ item.time_updated }}</td>
|
|
<td>
|
|
{% if item.last_error %}
|
|
<span class="warning">{{ item.last_error }}</span>
|
|
{% elif item.last_downloaded_at %}
|
|
cached
|
|
{% else %}
|
|
<span class="muted">pending</span>
|
|
{% endif %}
|
|
</td>
|
|
{% if can_edit %}
|
|
<td>
|
|
<form method="post" action="/overlays/{{ overlay.id }}/items/{{ item.id }}/delete" class="inline-form">
|
|
<input type="hidden" name="csrf_token" value="{{ session.get('csrf_token', '') }}">
|
|
<button type="submit" class="button-secondary">Remove</button>
|
|
</form>
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
{% else %}
|
|
<tr><td colspan="{% if can_edit %}8{% else %}7{% endif %}" class="muted">No workshop items yet.</td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|