From 371d4bc9ea4638f7d4b2048e4938bfe0e055b995 Mon Sep 17 00:00:00 2001 From: Jeff Triplett Date: Sat, 22 Jul 2023 15:14:44 -0500 Subject: [PATCH] :gear: Updates justfile compose workflows --- justfile | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 2c68495..f693b03 100644 --- a/justfile +++ b/justfile @@ -4,12 +4,16 @@ @alex: npx alex README.md +@bootstrap: + pip install --upgrade pip pip-tools + pip install --upgrade --requirement requirements.in + @build: just toc bundle exec jekyll build @down: - just down + docker-compose down @lint: -curlylint _layouts/ @@ -19,7 +23,10 @@ # modd --file=modd.conf just up "" -@up *ARGS="-d": +@start *ARGS="-d": + just up {{ ARGS }} + +@up *ARGS: docker-compose up {{ ARGS }} @toc: