mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2024-11-10 03:39:38 +00:00
10 lines
215 B
Bash
Executable file
10 lines
215 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -xe
|
|
|
|
TARGET_DIR=${TARGET_DIR:-"$HOME/public_html"}
|
|
FF_OFFLINE_MKDOCS_PLUGIN=${FF_OFFLINE_MKDOCS_PLUGIN:-"false"}
|
|
|
|
pip3 install -r requirements.txt --user
|
|
mkdocs build -d $TARGET_DIR
|
|
|
|
set +xe
|