aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 472fb7c886b2e27e297619955a514872ea4d67cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
run:
		cd backend && go run .
lint:
		cd backend && golangci-lint run
docker-build:
		docker build -t jzhao2k19/ctrl-v:latest ./backend
docker-run:
		docker run -p 8080:8080 jzhao2k19/ctrl-v:latest
docker-all: docker-build docker-run
docker-push:
		docker push jzhao2k19/ctrl-v:latest
fe-run:
		cd frontend && yarn start
fe-build:
		cd frontend && yarn build
all:
		make -j 2 run fe-run