- Express.js server with static file serving - Click counter frontend with localStorage persistence - Optimized Docker setup with multi-stage build - Production-ready configuration with health checks - Automated deployment script for VPS - Comprehensive deployment documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
540 B
HTML
20 lines
540 B
HTML
<!doctype html>
|
||
<html lang="ru">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>Счётчик кликов</title>
|
||
<link rel="stylesheet" href="/style.css">
|
||
</head>
|
||
<body>
|
||
<main class="container">
|
||
<h1>Счётчик кликов</h1>
|
||
<div class="counter">
|
||
<div id="value">0</div>
|
||
<button id="inc">+1</button>
|
||
<button id="reset" class="secondary">Сброс</button>
|
||
</div>
|
||
</main>
|
||
<script src="/main.js" defer></script>
|
||
</body>
|
||
</html>
|