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 | |
| # quickstart.sh — All-in-one setup for the /epic PM prototyping skill | |
| # | |
| # Consolidates bootstrap.sh + install.sh + setup-platform.sh into a single | |
| # curl-able, idempotent script. Safe to re-run — skips steps already done. | |
| # | |
| # Usage: | |
| # bash <(curl -fsSL https://gist.github.com/magenerali/cc6e3d755c1036caa6fdb6d9bed601ca/raw/quickstart.sh) | |
| # bash <(curl -fsSL https://gist.github.com/magenerali/cc6e3d755c1036caa6fdb6d9bed601ca/raw/quickstart.sh) --skip-platform | |
| # |
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 | |
| # quickstart.sh — All-in-one setup for the /epic PM prototyping skill | |
| # | |
| # Consolidates bootstrap.sh + install.sh + setup-platform.sh into a single | |
| # curl-able, idempotent script. Safe to re-run — skips steps already done. | |
| # | |
| # Usage: | |
| # bash <(curl -fsSL <gist-raw-url>) | |
| # bash <(curl -fsSL <gist-raw-url>) --skip-platform | |
| # |