gpstracker/Makefile

10 lines
130 B
Makefile

backend:
npm install && \
npm run build
frontend:
cd frontend && \
npm install && \
npm run build
all: backend frontend