This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Bootstrap for mobile app setup - runs the full script from the private repo | |
| set -e | |
| if ! command -v gh &> /dev/null; then | |
| echo "GitHub CLI not found. Run the dev machine setup first:" | |
| echo " curl -fsSL https://gist.githubusercontent.com/digitalhenTR/23f0ac8c27e91c17083a44caa79b344f/raw | bash" | |
| exit 1 | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================================================= | |
| # Chrome DevTools MCP Configuration Script (Windows) | |
| # ============================================================================= | |
| # | |
| # Configures Chrome DevTools MCP server for Claude Code. | |
| # This enables AI coding assistants to debug web pages directly in Chrome. | |
| # | |
| # Run with: | |
| # irm https://gist.githubusercontent.com/digitalhenTR/5f5874136abaf764bddc5bf16f470698/raw | iex | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ============================================================================= | |
| # Chrome DevTools MCP Configuration Script (Mac) | |
| # ============================================================================= | |
| # | |
| # Configures Chrome DevTools MCP server for Claude Code. | |
| # This enables AI coding assistants to debug web pages directly in Chrome. | |
| # | |
| # Run with: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================================================= | |
| # Bootstrap Script for Dev Machine Setup (Windows) | |
| # ============================================================================= | |
| # | |
| # This script is hosted as a public gist and bootstraps the full setup. | |
| # It handles GitHub authentication and TR org access before cloning the | |
| # private setup repo. | |
| # | |
| # Run with: | |
| # irm https://gist.githubusercontent.com/digitalhenTR/9a61a38b5b1a31d40083f399e7889456/raw | iex |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ============================================================================= | |
| # Bootstrap Script for Dev Machine Setup (Mac) | |
| # ============================================================================= | |
| # | |
| # This script is hosted as a public gist and bootstraps the full setup. | |
| # It handles GitHub authentication and TR org access before cloning the | |
| # private setup repo. | |
| # | |
| # Run with: |