DEPLOY_DIR := ./deploy SRC_DIR := ./src build-image-dev: - sh ${DEPLOY_DIR}/scripts/image-build.sh dev build-image-prod: - sh ${DEPLOY_DIR}/scripts/image-build.sh push-image-dev: - sh ${DEPLOY_DIR}/scripts/image-push.sh dev push-image-prod: - sh ${DEPLOY_DIR}/scripts/image-push.sh build-local-server: - go build -C ${SRC_DIR} -o ../deploy/server cmd/server/main.go run-local-server: - cd deploy/ && ./server build-local-scheduler: - go build -C ${SRC_DIR} -o ../deploy/scheduler cmd/scheduler/main.go run-local-scheduler: - cd deploy/ && ./scheduler