.PHONY: run install
install:
	npm install

run:
	docker compose up --build

dev: run
