Skip to content

Commit

Permalink
add just target
Browse files Browse the repository at this point in the history
  • Loading branch information
BalduinLandolt committed Jun 4, 2024
1 parent 76dafb5 commit 6863221
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ default:
alias dog := docs-openapi-generate
alias ssl := stack-start-latest
alias stop := stack-stop
alias ssd := stack-start-dev

# Start stack
stack-start:
Expand All @@ -15,6 +16,12 @@ stack-start:
./webapi/scripts/wait-for-db.sh
@echo "Stack started"

# Start Stack without API for development
stack-start-dev: stack-start
@echo "Stopping API"
docker compose down api
@echo "Stack started without API"

# Start stack and pull latest images before starting
stack-start-latest: && stack-start
@echo "Pulling latest"
Expand Down

0 comments on commit 6863221

Please sign in to comment.