inviqa-tailwindcss-example/justfile

15 lines
202 B
Makefile
Raw Normal View History

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