Skip to content

Commit 6c8e948

Browse files
committed
Cleanup / refactor backend
1 parent 0bc13f5 commit 6c8e948

16 files changed

+590
-409
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ node_modules/
2222

2323
# TODO
2424
# Frontend
25+
2526
# Backend
27+
art-peace-backend

Makefile

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
#TODO: setup all, list dependencies, etc
22

3-
build: contracts-build
3+
build: backend-build frontend-build contracts-build
44
test: contracts-test
55

6+
backend-build:
7+
@echo "Building backend..."
8+
@cd backend && go build
9+
10+
frontend-build:
11+
@echo "Building frontend..."
12+
@cd frontend && npm run build
13+
614
contracts-build:
715
@echo "Building contracts..."
816
@cd onchain && scarb build

0 commit comments

Comments
 (0)