Add comprehensive hook installation system and update documentation
Major Features Added: • Automated hook installation scripts (install-hooks.sh and setup-hooks) • User-scope installation with automatic domain configuration • 7 pre-configured hook profiles for different user types • Comprehensive documentation updates across all guides Hook Installation System: • ./setup-hooks - One-liner installation for most users • ./install-hooks.sh - Full-featured installer with profile selection • Automatic domain replacement using $DOMAIN environment variable • Settings backup and verification capabilities • Safe uninstallation with rollback support Documentation Enhancements: • Updated README.md with complete project overview and proper git repository URL • Enhanced Getting Started guide with automated hook installation • Improved Docker deployment guide with hook installation step • Reorganized documentation index with better visual hierarchy • Added repository URL: https://git.supported.systems/claude/claude-code-tracker.git Technical Improvements: • Rebuilt Docker containers with all latest changes • Verified application health and functionality • Updated all installation examples with correct repository URL • Improved quick start workflow with 3-step visual process 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
50c80596d0
commit
1e1d4a995d
8 changed files with 1038 additions and 129 deletions
|
|
@ -102,20 +102,21 @@
|
|||
<p class="text-muted mb-3">Set up hooks to automatically track new sessions and conversations in real-time.</p>
|
||||
|
||||
<div class="bg-light p-3 rounded mb-3">
|
||||
<h6><i class="fas fa-code me-2"></i>Hook Configuration:</h6>
|
||||
<p class="mb-2">Add this configuration to your Claude Code settings:</p>
|
||||
<pre class="bg-dark text-light p-3 rounded"><code>{
|
||||
"hooks": {
|
||||
"session_start": "curl -X POST http://localhost:8000/api/sessions/start",
|
||||
"session_end": "curl -X POST http://localhost:8000/api/sessions/end",
|
||||
"conversation_update": "curl -X POST http://localhost:8000/api/conversations"
|
||||
}
|
||||
}</code></pre>
|
||||
<h6><i class="fas fa-magic me-2"></i>Automatic Installation (Recommended):</h6>
|
||||
<p class="mb-2">Use our automated installer for easy setup:</p>
|
||||
<pre class="bg-dark text-light p-3 rounded"><code># Set your domain and install hooks
|
||||
export DOMAIN=your-domain.com
|
||||
./setup-hooks</code></pre>
|
||||
|
||||
<div class="alert alert-success mt-2 mb-0">
|
||||
<i class="fas fa-rocket me-1"></i>
|
||||
<strong>New:</strong> Automatic hook installer with 7+ pre-configured profiles available!
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="alert alert-warning mb-0">
|
||||
<i class="fas fa-exclamation-triangle me-2"></i>
|
||||
<strong>Note:</strong> Detailed hook setup instructions are available in the <a href="/dashboard/docs/hook-setup">Hook Setup Guide</a>.
|
||||
<div class="alert alert-info mb-0">
|
||||
<i class="fas fa-info-circle me-2"></i>
|
||||
<strong>Alternative Methods:</strong> Manual configuration and detailed setup instructions are available in the <a href="/dashboard/docs/hook-setup">Hook Setup Guide</a>.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue