Makefile 406 B

123456789101112131415161718192021222324
  1. build_shared:
  2. cd shared && npm run build
  3. build_bot: build_shared
  4. cd bot && npm run build
  5. build_web: build_shared
  6. cd web && npm run build
  7. build:
  8. docker-compose build
  9. start_db: build
  10. docker-compose up db adminer
  11. start: build
  12. docker-compose up db adminer noctbot web
  13. start_bot: build
  14. docker-compose up db adminer noctbot
  15. start_web: build
  16. docker-compose up db adminer web