mirror of
https://github.com/claude-did-this/claude-hub.git
synced 2026-02-14 19:30:02 +01:00
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>
14 lines
493 B
Bash
Executable File
14 lines
493 B
Bash
Executable File
#!/bin/bash
|
|
echo "Setting up Claude Code authentication..."
|
|
|
|
# Build the setup container
|
|
docker build -f Dockerfile.setup -t claude-setup .
|
|
|
|
# Run it interactively with AWS credentials mounted
|
|
docker run -it -v $HOME/.aws:/root/.aws:ro claude-setup
|
|
|
|
echo ""
|
|
echo "After completing the authentication in the container:"
|
|
echo "1. Run 'docker ps -a' to find the container ID"
|
|
echo "2. Run 'docker cp <container_id>:/root/.claude ./claude-config'"
|
|
echo "3. Then run './update-production-image.sh'" |