From 51b5a5c01bc101de6b5ea163cd980e7c31a436ad Mon Sep 17 00:00:00 2001 From: despiegk Date: Thu, 19 Sep 2024 12:13:36 +0400 Subject: [PATCH] ... --- README.md | 7 ------- start.sh | 5 ++++- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 5651b7cf6..3880ef8a6 100644 --- a/README.md +++ b/README.md @@ -66,13 +66,6 @@ bash build.sh ``` -Now run `build.sh` to download Tailwind, build the CSS, and also build the site with Zola: - -``` -cd www_threefold_io -bash build.sh -``` - Finally, start a browsable local copy of the site that will respond to changes in the source files like this: ``` diff --git a/start.sh b/start.sh index 4d1fa66f1..863cc9725 100755 --- a/start.sh +++ b/start.sh @@ -19,7 +19,10 @@ tailwindcss -i css/index.css -o ./static/css/index.css --watch & zola serve & # compiles tailwind css for prod & builds project tailwindcss -i css/index.css -o ./static/css/index.css --minify -zola build + +killall zola + +zola serve # kills zola and tw bg processes on interrupt trap 'kill $(jobs -p); exit 1' INT