mirror of
https://github.com/sqlfluff/sqlfluff
synced 2025-12-17 19:31:32 +00:00
37 lines
1.0 KiB
Makefile
37 lines
1.0 KiB
Makefile
.PHONY: help build clean fresh release shell start stop
|
|
|
|
.DEFAULT_GOAL := help
|
|
|
|
# Set VERSION from first argument if provided
|
|
VERSION := $(word 2,$(filter-out $(.DEFAULT_GOAL),$(MAKECMDGOALS)))
|
|
|
|
# Treat flow name as a target (prevents make errors)
|
|
$(VERSION):
|
|
@:
|
|
|
|
help: ## Show this available targets
|
|
@grep -E '^[/a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
|
|
|
|
build: ## Build the development container
|
|
docker-compose build development
|
|
|
|
clean: ## Clean up all containers and images
|
|
docker system prune -f
|
|
docker-compose stop
|
|
docker rmi `docker images -a -q`
|
|
|
|
fresh: ## Build the development container from scratch
|
|
docker-compose build --no-cache development
|
|
|
|
release: ## Release a new version
|
|
@python util.py release $(VERSION)
|
|
|
|
shell: ## Start a bash session in the development container
|
|
docker-compose exec development bash
|
|
|
|
start: ## Start the development container
|
|
docker-compose up -d
|
|
|
|
stop: ## Stop the development container
|
|
docker-compose stop
|