# 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 conc -n "frontend,backend,docker" "cd frontend && bun run start" "cd backend/ && watchexec -r -e java ./gradlew :bootRun" "docker compose up" # 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 # Formats the code duh format: cd frontend && bunx prettier --write "src/**/*.{ts,html,css,scss}"