Skip to content

Commit

Permalink
chore: add build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
lekotros committed Feb 7, 2023
1 parent 58c91cb commit 035ab56
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ DOCKER_TAG ?= $(shell git log --format="%h" -n 1)
run-web:
cd app && npm run dev

build-web:
cd app && npm run build

run-server:
go run cmd/*.go server

build-cli:
go build cmd*.go -o greenlight

docker-build:
docker build -t ${DOCKER_USERNAME}/${APP_NAME}:${DOCKER_TAG} .

Expand Down

0 comments on commit 035ab56

Please sign in to comment.