diff options
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | lumebuild.sh | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -15,6 +15,7 @@ This script automates the following tasks: - Lume static site generator - Git - WebP conversion tool (optional) +- Mastodon Post (optional) [WebP convert scripts are in this repository of mine](https://github.com/haturatu/webpsh) @@ -27,6 +28,7 @@ SRC_DIR="$LUME_DIR/src" # Path to your Lume source directory BUILD_DIR="site" # Path to your Lume output directory WEBPSH="/your/webp/convert/path" # Path to WebP conversion script optional COMMIT_COMMENT="`date`" # Your fav commit comment +FEDI_CMT="y" # Fediverse Post(use toot) ``` ## Usage diff --git a/lumebuild.sh b/lumebuild.sh index 3f17ff0..a6575fc 100755 --- a/lumebuild.sh +++ b/lumebuild.sh @@ -4,13 +4,13 @@ LUME_DIR="/your/lume/dir" SRC_DIR="$LUME_DIR/src" BUILD_DIR="site" -FEDI_CMT="y" # OPTIONAL BLOG_URL="https://yourblog.url" POST_URL_DIR="posts" WEBPSH="/your/webp/convert/path" COMMIT_COMMENT="`echo "Memory" && free -h | head -2 | awk '{print $(NF-5)"," $(NF-4)"," $(NF-3)}' | column -t -s ","`" +FEDI_CMT="y" export DENO_INSTALL="/home/$USER/.deno" export PATH="$DENO_INSTALL/bin:$PATH" |