summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2022-01-06 10:34:11 +0100
committerMatthias Beyer <mail@beyermatthias.de>2022-01-06 11:09:01 +0100
commit921a8b66045ff77c7c4233648f1b6474e77252bf (patch)
tree2335814263f95dafd49908ab57d9b75110bd6626
parentaef34caae970ca4a57d3a4e68b6dcd4ed8ccd8aa (diff)
Remove makefile
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 388bf2d..0000000
--- a/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-all: build
-
-blogdir:
- rm blog-imports/* || true
- mkdir blog-imports -p
-
-blogimport: blogdir
- cat blog-import.json | ruby import-blog.rb
-
-build: blogimport
- nix-shell -p zola --run "zola build"
-
-serve:
- nix-shell -p zola --run "zola serve"
-
-deploy: build
- rsync -arP ./public/ as:/srv/knowledge.beyermatthi.as/
-
-.PHONY: build watch deploy