inviqa-tailwindcss-example/justfile

15 lines
204 B
Makefile
Raw Permalink Normal View History

2022-09-09 17:00:00 +00:00
default:
just --list
down:
docker compose down
up *args:
docker compose up {{args}}
yarn *args:
just _run yarn {{args}}
2022-09-09 17:00:00 +00:00
_run +args:
docker compose run --rm --entrypoint bash app -c {{args}}