Enables Ralph to run inside a Docker container for Windows users (via Docker Desktop) and anyone preferring containerized execution. New files: - Dockerfile (Debian slim + Node.js 20 + all Ralph dependencies) - docker-compose.yml for easy startup - docker/docker-entrypoint.sh with UID/GID remapping - docker/ralph-docker (bash wrapper) and ralph-docker.ps1 (PowerShell) - .gitattributes to prevent Windows CRLF line ending corruption - .dockerignore for clean build context - .github/workflows/docker.yml CI workflow - docs/user-guide/04-docker-setup.md comprehensive documentation Updated: README.md, CLAUDE.md, docs/user-guide/README.md, .gitignore https://claude.ai/code/session_01SNzxUdH1Udf26rN3RKNNzu
34 lines
513 B
Text
34 lines
513 B
Text
# Git
|
|
.git
|
|
|
|
# Node modules
|
|
node_modules/
|
|
|
|
# Ralph state files (rebuilt at runtime)
|
|
.ralph/.call_count
|
|
.ralph/.last_reset
|
|
.ralph/.exit_signals
|
|
.ralph/.response_analysis
|
|
.ralph/.circuit_breaker_state
|
|
.ralph/.circuit_breaker_history
|
|
.ralph/.json_parse_result
|
|
.ralph/.last_output_length
|
|
.ralph/.ralph_session
|
|
.ralph/.ralph_session_history
|
|
.ralph/.claude_session_id
|
|
.ralph/status.json
|
|
.ralph/logs/
|
|
|
|
# Coverage and test artifacts
|
|
coverage/
|
|
*.log
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|