| 123456789101112131415161718192021222324 | 
							
- build_db:
 
- 	cd db && npm run build
 
- build_bot: build_db
 
- 	cd bot && npm run build
 
- build_web: build_db
 
- 	cd web && npm run build
 
- build:
 
- 	docker-compose build
 
- start_db: build
 
- 	docker-compose up db adminer
 
- start: build
 
- 	docker-compose up db adminer noctbot web
 
- start_bot: build
 
- 	docker-compose up db adminer noctbot
 
- start_web: build
 
- 	docker-compose up db adminer web
 
 
  |