feat: add seo diagnostics tool with cli commands, config paths, and static versioning

Add SEO_REPORTS_DIR to config, STATIC_VERSION for cache-busting, seo prune/clear CLI subcommands, tools router with seo job endpoints, and boot-versioned static URLs in Dockerfile and Makefile
This commit is contained in:
2026-06-14 00:16:22 +00:00
parent 61c1ae8c5d
commit 1b89f7c49f
110 changed files with 4501 additions and 270 deletions
+4 -4
View File
@@ -1,8 +1,8 @@
{% extends "base.html" %}
{% block extra_head %}
<link rel="stylesheet" href="/static/css/sidebar.css">
<link rel="stylesheet" href="/static/css/docs.css">
<link rel="stylesheet" href="/static/css/components-docs.css">
<link rel="stylesheet" href="{{ static_url('/static/css/sidebar.css') }}">
<link rel="stylesheet" href="{{ static_url('/static/css/docs.css') }}">
<link rel="stylesheet" href="{{ static_url('/static/css/components-docs.css') }}">
{% endblock %}
{% block content %}
<script>window.DEVPLACE_DOCS = {{ {
@@ -60,5 +60,5 @@
</div>
{% endblock %}
{% block extra_js %}
<script type="module" src="/static/js/ApiDocs.js"></script>
<script type="module" src="{{ static_url('/static/js/ApiDocs.js') }}"></script>
{% endblock %}