1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/build

27 lines
560 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
echo ">> Cleaning plugins..."
rm -rf pelican_plugins
echo ">> Installing Plugins"
git clone --recursive https://github.com/getpelican/pelican-plugins --depth=1 pelican_plugins/
echo ">> Hot fixing..."
rm -rf pelican_plugins/pelican-jinja2content
git clone https://github.com/RealOrangeOne/pelican-jinja2content -b patch-1 --depth=1 pelican_plugins/pelican-jinja2content
npm install