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>
8 lines
186 B
Bash
Executable File
8 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Ensure logs directory exists and has proper permissions
|
|
mkdir -p /app/logs
|
|
chmod 777 /app/logs
|
|
|
|
# Switch to claudeuser and execute the main command
|
|
exec gosu claudeuser "$@" |