mirror of
https://github.com/claude-did-this/claude-hub.git
synced 2026-02-15 03:31:47 +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>
15 lines
445 B
Bash
Executable File
15 lines
445 B
Bash
Executable File
#!/bin/bash
|
|
echo "Testing basic container functionality..."
|
|
|
|
# Test without any special environment vars to bypass entrypoint
|
|
docker run --rm \
|
|
--entrypoint /bin/bash \
|
|
claude-code-runner:latest \
|
|
-c "echo 'Container works' && ls -la /home/node/"
|
|
|
|
echo "Testing AWS credentials volume mount..."
|
|
docker run --rm \
|
|
-v $HOME/.aws:/home/node/.aws:ro \
|
|
--entrypoint /bin/bash \
|
|
claude-code-runner:latest \
|
|
-c "ls -la /home/node/.aws/" |