Files
new-api/makefile

15 lines
391 B
Makefile
Raw Normal View History

2024-03-01 20:39:28 +08:00
FRONTEND_DIR = ./web
BACKEND_DIR = .
.PHONY: all build-frontend start-backend
2024-03-01 20:39:28 +08:00
2024-03-03 19:41:15 +08:00
all: build-frontend start-backend
2024-03-01 20:39:28 +08:00
2024-03-01 21:54:24 +08:00
build-frontend:
@echo "Building frontend..."
2024-04-17 20:47:13 +08:00
@cd $(FRONTEND_DIR) && npm install && DISABLE_ESLINT_PLUGIN='true' VITE_REACT_APP_VERSION=$(cat VERSION) npm run build npm run build
2024-03-01 21:54:24 +08:00
2024-03-01 20:39:28 +08:00
start-backend:
@echo "Starting backend dev server..."
@cd $(BACKEND_DIR) && go run main.go &