Created
August 27, 2025 08:24
-
-
Save prateekmedia/88d4543ba60004b90e713a5da48a7ca7 to your computer and use it in GitHub Desktop.
Profile for claudebox
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
| #!/usr/bin/env bash | |
| # Flutter development profile for ClaudeBox | |
| set -euo pipefail | |
| case "${1:-}" in | |
| info) | |
| printf '%s|%s\n' "flutter" "Flutter Development (installed from upstream archive)" | |
| ;; | |
| packages) | |
| # Flutter is installed from tarball, not apt | |
| printf '%s\n' "" | |
| ;; | |
| dockerfile) | |
| cat << 'EOF' | |
| RUN curl -fsSL https://fvm.app/install.sh | bash | |
| ENV PATH="/usr/local/bin:$PATH" | |
| EOF | |
| ;; | |
| depends) | |
| printf '%s\n' "core" | |
| ;; | |
| *) | |
| printf 'Usage: %s {info|packages|dockerfile|depends}\n' "$0" >&2 | |
| exit 1 | |
| ;; | |
| esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment