mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
12 lines
228 B
Bash
Executable File
12 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
source dependencies.sh
|
|
|
|
source ~/.nvm/nvm.sh
|
|
nvm install $NODE_VERSION_PRECISE
|
|
nvm use $NODE_VERSION_PRECISE
|
|
npm install --global yarn
|
|
|
|
pip3 install --user PyYaml
|
|
pip3 install --user beautifulsoup4 |