Files
music_library/scripts/dev/setup
T
Claudio Ortolina c513c43a52 Ensure working directory in scripts
So that they can be run standalone and not just through Mise
2025-10-07 10:30:38 +03:00

22 lines
448 B
Bash
Executable File

#!/usr/bin/env bash
#MISE description="Setup the local development environment"
set -e
source "$(dirname "$0")/../_helpers.sh"
ensure_working_directory!
# Add the Fluxon UI hex source repo
mix hex.repo add fluxon https://repo.fluxonui.com \
--fetch-public-key $FLUXON_KEY_FINGERPRINT \
--auth-key $FLUXON_LICENSE_KEY
# Install the gh extension to preview local markdown files
gh extension install thiagokokada/gh-gfm-preview
mix setup