Skip to content

Commit

Permalink
Move direnv after volta
Browse files Browse the repository at this point in the history
  • Loading branch information
kigster committed Apr 15, 2024
1 parent 6dd1811 commit be6c6fe
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bin/boot-up
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@ run.set-all abort-on-error
run "brew services start postgresql@16"
run "brew services start memcached"

command -V direnv >/dev/null && {
h1 "Setting up direnv..."
eval "$(direnv hook bash)" # this script evaluates within BASH
run "direnv allow ."
}

h1 "Installing Dependencies"
rbenv install -s "$(cat .ruby-version)"

Expand All @@ -41,6 +35,12 @@ run "volta install [email protected]"
run "volta pin node"
run "volta pin yarn"

command -V direnv >/dev/null && {
h1 "Setting up direnv..."
eval "$(direnv hook bash)" # this script evaluates within BASH
run "direnv allow ."
}

run "yarn install"
run "yarn run build"

Expand Down

0 comments on commit be6c6fe

Please sign in to comment.