Compare commits

..

2 Commits

Author SHA1 Message Date
d3m0k1d
bf4b4748cb chore: add Makefile to frontend
Some checks failed
Backend ci / build (push) Successful in 3m49s
Backend ci / build (pull_request) Has been cancelled
2026-02-03 16:13:24 +03:00
d3m0k1d
68fba12f47 fix: build path 2026-02-03 16:12:00 +03:00
2 changed files with 9 additions and 1 deletions

View File

@@ -37,4 +37,4 @@ jobs:
- name: Run tests
run: go test ./...
- name: Build
run: go build -o backend ./cmd/banforge
run: go build -o backend ./cmd/main.go

8
frontend/Makefile Normal file
View File

@@ -0,0 +1,8 @@
.PHONY: build dev
build:
npm run build
dev:
npm run dev