build-configs(update)

This commit is contained in:
Oliver Davies 2023-04-24 20:28:00 +01:00
parent 28e2f4ae76
commit 5591a66603
2 changed files with 12 additions and 1 deletions

View file

@ -1,2 +1,2 @@
/.github
/README.md /README.md
/-github/

View file

@ -3,6 +3,15 @@
default: default:
@just --list @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: composer *args:
just _exec php composer {{ args }} just _exec php composer {{ args }}
@ -30,3 +39,5 @@ _run service command *args:
--rm \ --rm \
-T \ -T \
{{ service }} {{ args }} {{ service }} {{ args }}
# vim: ft=just