mirror of
https://github.com/Retropex/apolloapi-v2.git
synced 2025-05-20 15:10:43 +02:00
11 lines
258 B
Bash
Executable File
11 lines
258 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export NODE_VERSION=8.10.0
|
|
|
|
echo "Configure - start"
|
|
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash && \
|
|
source ~/.bashrc && \
|
|
nvm install $NODE_VERSION && \
|
|
npm install -g yarn && \
|
|
echo "Configure - done"
|