Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@ SHELL := /bin/bash
.PHONY: bundled_off prod_web prod_worker prod_scheduler docs remove_running_dev_image clean

bundled: dev_image
docker-compose up
@echo "Starting Querybook services in the background..."
docker compose up -d
@echo "Waiting for services to start..."
@sleep 10 # Wait for services to initialize
@echo "Opening Querybook in your browser at http://localhost:10001"
@{ \
case `uname -s` in \
Darwin) open http://localhost:10001;; \
Linux) xdg-open http://localhost:10001;; \
*) start "" http://localhost:10001;; \
esac; \
}
@echo "Attaching to web server logs... (Press Ctrl+C to stop)"
docker compose logs -f web


bundled_off:
docker-compose down
Expand Down