Skip to content

Instantly share code, notes, and snippets.

@prateekmedia
Created August 27, 2025 08:24
Show Gist options
  • Select an option

  • Save prateekmedia/88d4543ba60004b90e713a5da48a7ca7 to your computer and use it in GitHub Desktop.

Select an option

Save prateekmedia/88d4543ba60004b90e713a5da48a7ca7 to your computer and use it in GitHub Desktop.
Profile for claudebox
#!/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