Makefile 217 B

1234567891011121314
  1. #!make
  2. include ./docker/.env
  3. export $(shell sed 's/=.*//' ./docker/.env)
  4. setup:
  5. go mod download;
  6. cd dashboard && npm install;
  7. cd ../;
  8. run-server:
  9. air -c .air.toml
  10. run-frontend:
  11. cd ./dashboard && npm run start