瀏覽代碼

:gear: Updates justfile compose workflows

Jeff Triplett 2 年之前
父節點
當前提交
371d4bc9ea
共有 1 個文件被更改,包括 9 次插入2 次删除
  1. 9 2
      justfile

+ 9 - 2
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: