Added Build to makefile and few pnpm changes

This commit is contained in:
sanjay7178
2024-05-30 17:23:20 +05:30
parent 0b2f2214f9
commit b46b36dd35
5 changed files with 1039 additions and 5 deletions

View File

@@ -36,6 +36,10 @@ $(TARGET): $(VAR) $(CFG) $(SVELTE_TARGETS)
$(info ===> BUILD cc-backend)
@go build -ldflags=${LD_FLAGS} ./cmd/cc-backend
build :
$(info ==> BUILD cc-backend)
@go build -ldflags=${LD_FLAGS} ./cmd/cc-backend
frontend:
$(info ===> BUILD frontend)
cd web/frontend && npm install && npm run build