mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
15 lines
400 B
Bash
Executable File
15 lines
400 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "Installing Yarn"
|
|
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
|
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
|
sudo apt-get update && sudo apt-get install yarn
|
|
|
|
echo "Installing Phoenix dependencies"
|
|
mix local.hex --force
|
|
mix local.rebar --force
|
|
|
|
export MIX_ENV=test
|
|
mix deps.get
|
|
mix deps.compile
|