| 1234567891011121314151617181920212223242526272829303132333435 | ifeq (dev, $(ENV))    dc = docker-compose -f docker-compose.yml -f docker-compose.dev.ymlelse    dc = docker-composeendifbuild_shared:	cd shared && npm run buildbuild_bot: build_shared	cd bot && npm run buildbuild_web: build_shared	cd web && npm run buildbuild:	$(dc) buildstart_env: build	$(dc) up db adminer facedetectstart: build	$(dc) up db adminer noctbot web facedetectstart_bot: build	$(dc) up db adminer noctbot facedetectstart_web: build	$(dc) up db adminer webnpmi:	cd shared && npm install	cd bot && npm install	cd web && npm install
 |