Compare commits
No commits in common. "46c9d2b7c1f0b3a43af6ea57dd06dd77ea2456f7" and "12b45957e7c3c3f7385eb172fa9600b77710bbfb" have entirely different histories.
46c9d2b7c1
...
12b45957e7
1 changed files with 0 additions and 23 deletions
23
justfile
23
justfile
|
@ -1,23 +0,0 @@
|
|||
# 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
|
Reference in a new issue