Compare commits
1 commit
218bc611db
...
017d32bbb6
Author | SHA1 | Date | |
---|---|---|---|
017d32bbb6 |
1 changed files with 2 additions and 1 deletions
3
justfile
3
justfile
|
@ -6,7 +6,8 @@ info:
|
||||||
start:
|
start:
|
||||||
command -v concurrently &> /dev/null || bun add -g concurrently
|
command -v concurrently &> /dev/null || bun add -g concurrently
|
||||||
command -v watchexec &> /dev/null || brew install watchexec
|
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"
|
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)
|
# Builds both the backend and frontend docker images (obv)
|
||||||
build:
|
build:
|
||||||
|
|
Reference in a new issue