Files
claude-hub/scripts/setup/setup-claude-auth.sh
Jonathan Flatt 4cdad828c4 Reorganize scripts into structured directory layout and consolidate functionality
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>
2025-05-21 00:19:07 +00:00

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'"