19 lines
302 B
Bash
Executable file
19 lines
302 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [ -z "$NVM_DIR" ]
|
|
then
|
|
NVM_DIR="$HOME/.nvm"
|
|
fi
|
|
|
|
. $NVM_DIR/nvm.sh
|
|
nvm install
|
|
nvm use
|
|
|
|
set -e
|
|
|
|
pyvenv env
|
|
env/bin/pip install -r requirements.txt
|
|
|
|
git clone --recursive https://github.com/getpelican/pelican-plugins plugins/ || echo "Plugins already installed!"
|
|
|
|
npm install
|