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