Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 73 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Boilerplate Claude Code</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
line-height: 1.6;
color: #333;
}
header {
text-align: center;
margin-bottom: 30px;
}
h1 {
color: #2c3e50;
}
.description {
background-color: #f8f9fa;
padding: 20px;
border-radius: 8px;
margin: 20px 0;
}
.links {
margin-top: 30px;
}
.links a {
display: inline-block;
margin: 5px 10px;
padding: 10px 20px;
background-color: #3498db;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.links a:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<header>
<h1>Boilerplate Claude Code</h1>
<p>A demonstration of Claude Code on GitHub Actions</p>
</header>

<main>
<div class="description">
<h2>About This Project</h2>
<p>This project is a boilerplate that demonstrates how to set up and run claude-code on GitHub Actions, leveraging @musistudio/claude-code-router for routing.</p>

<p>本项目是一个样板,演示了如何配置并使用 <code>@musistudio/claude-code-router</code> 在 GitHub Actions 中运行 <code>claude-code</code>。</p>
</div>

<div class="links">
<h2>Quick Links</h2>
<a href="https://github.com/apps/claude" target="_blank">Install Claude GitHub App</a>
<a href="https://docs.anthropic.com/en/docs/claude-code/github-actions" target="_blank">Claude Code GitHub Actions</a>
<a href="https://github.com/musistudio/claude-code-router" target="_blank">Claude Code Router</a>
</div>
</main>

<footer style="text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid #eee;">
<p>Generated with <a href="https://claude.ai/code" target="_blank">Claude Code</a></p>
</footer>
</body>
</html>
Loading