Makefile 367 B

123456789101112131415161718192021222324
  1. build_db:
  2. cd db && npm run build
  3. build_bot: build_db
  4. cd bot && npm run build
  5. build_web: build_db
  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