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 | |
| # Howdy installation and configuration script | |
| set -Eeuo pipefail | |
| # Configuration constants | |
| readonly HOWDY_REPO="https://github.com/boltgolt/howdy.git" | |
| readonly HOWDY_BRANCH="beta" | |
| readonly HOWDY_DIR="/opt/howdy" | |
| readonly VENV_DIR="$HOWDY_DIR/.venv" |