aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRyan Mehri <[email protected]>2020-05-09 21:17:40 -0600
committerGitHub <[email protected]>2020-05-09 21:17:40 -0600
commit14e120bc3fa4da442af0063c1a00852e67fbc6a2 (patch)
tree9258832576f9c1bcad6126cf76ef8f7f6a128e82 /Makefile
parentMerge pull request #3 from jackyzha0/doc-expiry (diff)
parentfolder refactor (diff)
downloadctrl-v-14e120bc3fa4da442af0063c1a00852e67fbc6a2.tar.xz
ctrl-v-14e120bc3fa4da442af0063c1a00852e67fbc6a2.zip
Merge pull request #4 from jackyzha0/folder-refactor
folder refactor
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