Fixes, refactor, a lot of things happen

This commit is contained in:
PB
2022-12-02 21:03:08 +01:00
parent 5adafdd8fb
commit 6f7fdad944
30 changed files with 685 additions and 454 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
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
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