aboutsummaryrefslogtreecommitdiffstats
path: root/Justfile
diff options
context:
space:
mode:
Diffstat (limited to 'Justfile')
-rw-r--r--Justfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Justfile b/Justfile
new file mode 100644
index 0000000..1d5a4e3
--- /dev/null
+++ b/Justfile
@@ -0,0 +1,13 @@
+default:
+ @just --list
+
+generate-all:
+ just web
+
+web $CARGO_NAME="your name" $CARGO_EMAIL="author@example.com":
+ rm -rv web-generated
+ cargo generate --path ./component \
+ --name web-generated \
+ --define project-description="An example generated using the component template" \
+ --define use-gitserver=false
+