Added Chronos to schedule tasks, restructured config as common pkg, updated server pkg

This commit is contained in:
PB
2025-10-23 07:30:05 +02:00
parent 5279e34b2c
commit ed325c7faa
16 changed files with 148 additions and 72 deletions

View File

@@ -13,8 +13,14 @@ push-image-dev:
push-image-prod:
- sh ${DEPLOY_DIR}/image-push.sh
build-local:
build-local-server:
- go build -C ${SRC_DIR} -o ../deploy/server cmd/server/main.go
run-local:
run-local-server:
- cd deploy/ && ./server
build-local-chronos:
- go build -C ${SRC_DIR} -o ../deploy/chronos cmd/chronos/main.go
run-local-chronos:
- cd deploy/ && ./chronos