2022-11-29 22:35:02 +01:00
|
|
|
DEPLOY_DIR := ./deploy
|
|
|
|
SRC_DIR := ./src
|
|
|
|
|
|
|
|
## DEPLOY PART
|
|
|
|
build-image-dev:
|
|
|
|
- sh ${DEPLOY_DIR}/image-build.sh dev
|
|
|
|
|
|
|
|
build-image-prod:
|
|
|
|
- sh ${DEPLOY_DIR}/image-build.sh
|
|
|
|
|
2024-07-19 21:27:13 +02:00
|
|
|
push-image-dev:
|
|
|
|
- sh ${DEPLOY_DIR}/image-push.sh dev
|
|
|
|
|
2022-11-29 22:35:02 +01:00
|
|
|
push-image-prod:
|
|
|
|
- sh ${DEPLOY_DIR}/image-push.sh
|
|
|
|
|
|
|
|
# (GOLANG) APP PART
|
|
|
|
app-run:
|
|
|
|
- make -C ${SRC_DIR} run
|
|
|
|
|
|
|
|
app-build:
|
|
|
|
- make -C ${SRC_DIR} build
|