forked from claude-did-this/claude-hub
This commit reorganizes all scripts in the repository into a more structured directory layout for better maintainability: - Categorizes scripts by functionality (setup, build, aws, runtime, security, utils) - Organizes test scripts into logical categories - Consolidates redundant scripts with unified interfaces - Adds backward compatibility wrappers - Adds detailed SCRIPTS.md documentation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
478 B
Bash
Executable File
15 lines
478 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Starting Claude GitHub webhook service..."
|
|
|
|
# Build the Claude Code runner image
|
|
echo "Building Claude Code runner image..."
|
|
if docker build -f Dockerfile.claudecode -t claude-code-runner:latest .; then
|
|
echo "Claude Code runner image built successfully."
|
|
else
|
|
echo "Warning: Failed to build Claude Code runner image. Service will attempt to build on first use."
|
|
fi
|
|
|
|
# Start the webhook service
|
|
echo "Starting webhook service..."
|
|
exec node src/index.js |