| 123456789101112131415161718192021222324252627282930 | 
							- 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 facedetect
 
- start: build
 
- 	$(dc) up db adminer noctbot web facedetect
 
- start_bot: build
 
- 	$(dc) up db adminer noctbot facedetect
 
- start_web: build
 
- 	$(dc) up db adminer web
 
 
  |