ifeq (dev, $(ENV)) dc = docker-compose -f docker-compose.yml -f docker-compose.dev.yml else dc = docker-compose endif build_shared: cd shared && npm run build build_bot: build_shared cd bot && npm run build build_web: build_shared cd web && npm run build build: $(dc) build start_env: build $(dc) up db adminer start: build $(dc) up db adminer noctbot web start_bot: build $(dc) up db adminer noctbot start_web: build $(dc) up db adminer web