| 1234567891011121314151617181920212223242526272829303132333435363738 | ifeq (dev, $(ENV))    dc = docker-compose -f docker-compose.yml -f docker-compose.dev.yml	helpers = mongo-expresselse    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_local: build_shared build_bot build_webbuild:	$(dc) buildstart_env: build	$(dc) up db mongo adminer facedetect $(helpers)start: build	$(dc) up db mongo adminer noctbot web facedetect $(helpers)start_bot: build	$(dc) up db mongo adminer noctbot facedetect $(helpers)start_web: build	$(dc) up db mongo adminer web $(helpers)npmi:	cd shared && npm install	cd bot && npm install	cd web && npm install
 |