From 9aab757cdfb02e2efa9719605e6c8bed3926c31e Mon Sep 17 00:00:00 2001 From: Jan K9f Date: Fri, 16 May 2025 08:46:26 +0200 Subject: [PATCH] feat: Add justfile --- justfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..1d68253 --- /dev/null +++ b/justfile @@ -0,0 +1,23 @@ +# Info +info: + just --list + +# Starts the project in development mode +start: + command -v concurrently &> /dev/null || bun add -g concurrently + command -v watchexec &> /dev/null || brew install watchexec + docker compose up -d + conc -n "frontend,backend" "cd frontend && bun run start" "cd backend/ && watchexec -r -e java ./gradlew :bootRun" + +# Builds both the backend and frontend docker images (obv) +build: + just build-fe + just build-be + +# Builds the backend docker image +build-be: + docker buildx build -f backend/.docker/Dockerfile -t git.kjan.de/szut/casino-backend:latest backend + +# Builds the frontend docker image +build-fe: + docker buildx build -f frontend/.docker/Dockerfile -t git.kjan.de/szut/casino-frontend:latest frontend