From 5591a6660367754d47be9d947a291b91937bc3f4 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 24 Apr 2023 20:28:00 +0100 Subject: [PATCH] build-configs(update) --- .dockerignore | 2 +- justfile | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 6b276be..b0158cd 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,2 +1,2 @@ -/.github /README.md +/-github/ \ No newline at end of file diff --git a/justfile b/justfile index ede7928..6e905ba 100644 --- a/justfile +++ b/justfile @@ -3,6 +3,15 @@ default: @just --list +# Start the project +start: + cp -v --no-clobber .env.example .env + docker compose up -d + +# Stop the project +stop: + docker compose down + composer *args: just _exec php composer {{ args }} @@ -30,3 +39,5 @@ _run service command *args: --rm \ -T \ {{ service }} {{ args }} + +# vim: ft=just