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/scripts/generate-site.sh

14 lines
200 B
Bash

#!/usr/bin/env bash
set -e
echo "> Creating Site..."
# Build the static data
echo ">> Building static data..."
npm run build
echo ">> Compiling site pages..."
pelican -v
echo "> Build complete."