Makefile 265 B

123456789101112131415161718
  1. build_db:
  2. cd db && npm run build
  3. build_bot: build_db
  4. cd bot && npm run build
  5. build:
  6. docker-compose build
  7. start_db: build
  8. docker-compose up db adminer
  9. start: build
  10. docker-compose up db adminer noctbot
  11. start_bot: build
  12. docker-compose up db adminer noctbot