Initial commit: 50 shell-script generators with web UI

- 8 categories / 50 generators covering middleware, databases, runtimes,
  systemd services, system tools, network, monitoring, security
- VNC supports XFCE / GNOME / KDE Plasma / MATE / LXQt desktops
- Node.js versions 18-26 (incl. current LTS 24 Krypton and current 26)
- Live preview, copy / download / multi-script bundle in web UI
- Distro-aware (Ubuntu/Debian/CentOS/RHEL/Rocky/Alma/Fedora)
- All 50 generators pass bash -n syntax check
- Zero pip dependencies (Flask stdlib only)
This commit is contained in:
cnbug
2026-08-04 00:36:35 +08:00
commit 319f683a16
17 changed files with 4177 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>{% block title %}Shell-Gen · Linux 部署脚本生成器{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header class="topbar">
<div class="brand">
<span class="logo">⚙️</span>
<span class="title">shell-gen</span>
<span class="subtitle">Linux 一键部署脚本生成器</span>
</div>
<nav class="nav">
<a href="{{ url_for('index') }}">首页</a>
<span class="sep">·</span>
<span class="count">{{ total }} 个生成器</span>
</nav>
</header>
{% block body %}{% endblock %}
<footer class="footer">
<span>Generated by shell-gen · {{ total }} generators</span>
<span>·</span>
<a href="/healthz">/healthz</a>
<span>·</span>
<span>Compatible with Ubuntu / Debian / CentOS / RHEL / Rocky / Alma</span>
</footer>
</body>
</html>