123456789101112131415161718192021222324 |
- 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:
- 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
|