Spaces:
Sleeping
Sleeping
File size: 323 Bytes
000fcec |
1 2 3 4 5 6 7 8 9 10 11 |
export NVM_DIR="$HOME/.nvm" && (
git clone https://github.com/nvm-sh/nvm.git "$NVM_DIR"
cd "$NVM_DIR"
git checkout `git describe --abbrev=0 --tags --match "v[0-9]*" $(git rev-list --tags --max-count=1)`
) && \. "$NVM_DIR/nvm.sh"
nvm install --lts
nvm use --lts
node -v
cd frontend/React && npm install && npm start |