Skip to content

Commit

Permalink
Runs yarn install at project level on app boot (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
kieraneglin authored Jul 11, 2024
1 parent c0b8dec commit bb0e104
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/docker-run.dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

set -e

# Ensure the app's deps are installed
echo "\nInstalling Elixir deps..."
mix deps.get

# Install JS deps
echo "\nInstalling JS..."
cd assets && yarn install
# Install both project-level and assets-level JS dependencies
echo "\nInstalling JS deps..."
yarn install && cd assets && yarn install
cd ..

# Potentially Set up the database
Expand Down

0 comments on commit bb0e104

Please sign in to comment.