aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 23c4374..6b3a272 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
run:
- go run .
+ cd backend && go run .
lint:
- golangci-lint run
+ cd backend && golangci-lint run
docker-build:
- docker build -t jzhao2k19/ctrl-v:latest .
+ 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