From 0df6a79252b159aebad4a6e68f91b0c70611c3c2 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 20 Dec 2020 12:41:47 +0800 Subject: [PATCH] chore: add justfile --- {{project_name}}/justfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 {{project_name}}/justfile diff --git a/{{project_name}}/justfile b/{{project_name}}/justfile new file mode 100644 index 0000000..38d06ae --- /dev/null +++ b/{{project_name}}/justfile @@ -0,0 +1,8 @@ +_: + @just --list + +# serve docsify page +serve: + python -m SimpleHTTPServer 9999 + +