Files
firepool/templates/setup-miner.html
Nathan Woodburn 17d2f20b61
All checks were successful
Build Docker / BuildImage (push) Successful in 1m0s
Check Code Quality / RuffCheck (push) Successful in 1m8s
feat: Add setup page and OG
2026-04-04 19:30:14 +11:00

74 lines
3.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Firepool | Miner Setup Guide</title>
<meta name="description" content="Step-by-step guide to set up your miner for Firepool.">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Firepool">
<meta property="og:title" content="Firepool | Miner Setup Guide">
<meta property="og:description" content="Step-by-step guide to set up your miner for Firepool.">
<meta property="og:url" content="{{ request.url }}">
<meta property="og:image" content="https://explorer.hns.au/assets/img/favicon.png">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Firepool | Miner Setup Guide">
<meta name="twitter:description" content="Step-by-step guide to set up your miner for Firepool.">
<meta name="twitter:image" content="https://explorer.hns.au/assets/img/favicon.png">
<link rel="icon" href="https://explorer.hns.au/assets/img/favicon.png" type="image/png">
<link rel="stylesheet" href="/assets/css/index.css">
</head>
<body>
<div class="bg-orb orb-a"></div>
<div class="bg-orb orb-b"></div>
<div class="bg-grid"></div>
<main class="layout">
<header class="hero">
<div>
<p class="kicker">Firepool</p>
<h1>Miner Setup Guide</h1>
<p class="subtitle">Placeholder instructions until final setup docs are published.</p>
</div>
</header>
<section class="panel">
<div class="panel-head">
<h2>Step 1: Install Mining Software</h2>
<p>Placeholder: Download and install Fistbump pool miner.</p>
</div>
</section>
<section class="panel">
<div class="panel-head">
<h2>Step 2: Configure Pool Connection</h2>
<p>Placeholder pool endpoint:</p>
<p><strong>pool.woodburn.au:32871</strong></p>
<p>Use your wallet address as username. Optional rig naming format:</p>
<p>- <strong>yourAddress</strong></p>
<p>- <strong>yourAddress.rig1</strong></p>
</div>
</section>
<section class="panel">
<div class="panel-head">
<h2>Step 3: Start Miner</h2>
<p>Placeholder command (update with your actual address and any other options):</p>
<p><strong>miner --host pool.woodburn.au --user yourAddress</strong></p>
</div>
</section>
<section class="panel">
<div class="panel-head">
<h2>Step 4: Verify on Dashboard</h2>
<p>After starting your miner, go back to the dashboard and search your address to confirm worker hashrate and accepted shares.</p>
</div>
<a class="setup-link" href="/">Back to Dashboard</a>
</section>
</main>
</body>
</html>