summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhaturatu <taro@eyes4you.org>2024-11-28 19:55:31 +0900
committerhaturatu <taro@eyes4you.org>2024-11-28 19:55:31 +0900
commit251bd8058cddbf4cf8a96d7ba647faf7d4c6359c (patch)
treeca6a7659499c25b521b3610566327f28973ec919
parentd5791b2c8d6bd472e30e9c4b1619acfc528d8eb5 (diff)
readme update
-rw-r--r--README.md2
-rwxr-xr-xlumebuild.sh2
2 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index c2bbafe..60c54b3 100644
--- a/README.md
+++ b/README.md
@@ -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"