set dotenv-load # Build the application all: build test templ-install: @if ! command -v templ > /dev/null; then \ read -p "Go's 'templ' is not installed on your machine. Do you want to install it? [Y/n] " choice; \ if [ "$$choice" != "n" ] && [ "$$choice" != "N" ]; then \ go install github.com/a-h/templ/cmd/templ@latest; \ if [ ! -x "$$(command -v templ)" ]; then \ echo "templ installation failed. Exiting..."; \ exit 1; \ fi; \ else \ echo "You chose not to install templ. Exiting..."; \ exit 1; \ fi; \ fi templ-build: templ-install @echo "Building templ..." @templ generate tailwind-macos: @if [ ! -f tailwindcss ]; then curl -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-macos-arm64 -o tailwindcss; fi @chmod +x tailwindcss tailwind-linux: @if [ ! -f tailwindcss ]; then curl -sL https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64 -o tailwindcss; fi @chmod +x tailwindcss tailwind-build: @echo "Building tailwind..." @./tailwindcss -i cmd/web/assets/css/input.css -o cmd/web/assets/css/output.css sqlc-generate: @echo "Generating sqlc schema..." @sqlc generate migrate-create name: @migrate create -ext sql -dir internal/db/migrations -seq {{name}} swag-install: @if ! command -v swag > /dev/null; then \ read -p "Swag is not installed on your machine. Do you want to install it? [Y/n] " choice; \ if [ "$$choice" != "n" ] && [ "$$choice" != "N" ]; then \ go install github.com/swaggo/swag/cmd/swag@latest; \ if [ ! -x "$$(command -v swag)" ]; then \ echo "swag installation failed. Exiting..."; \ exit 1; \ fi; \ else \ echo "You chose not to install swag. Exiting..."; \ exit 1; \ fi; \ fi swag-generate: swag-install @echo "Generating OpenAPI docs..." @swag init -g internal/server/routes.go -o cmd/docs frontend-install: @if ! command -v npm > /dev/null; then \ echo "npm is not installed on your machine. Please install Node.js first."; \ exit 1; \ fi @cd cmd/frontend && npm install frontend-build: frontend-install @echo "Building frontend..." @cd cmd/frontend && npm run build [no-cd] build: sqlc-generate templ-build swag-generate @echo "Building..." @go build -o main cmd/main.go run: @templ generate @go run cmd/main.go test: build @echo "Testing..." @go test ./... -v # Clean the binary clean: @echo "Cleaning..." @rm -f main podman-build: @echo "Building Docker image with podman..." @podman build -t music-server . podman-run: @podman-compose up --build podman-down: @podman-compose down # Run integration tests with podman # Starts a test PostgreSQL container, runs tests, then cleans up test-integration: @echo "Starting test database container..." @podman-compose -f compose.test.yaml up -d @sleep 10 @echo "Running integration tests..." @. .env.test && go test -v -timeout 30m ./... # Alternative: Run integration tests using testcontainers with podman provider test-integration-tc: @echo "Running integration tests with testcontainers (podman provider)..." @TESTCONTAINERS_PROVIDER=podman go test -v -timeout 30m . # Stop and remove test database container test-integration-down: @echo "Stopping test database container..." @podman-compose -f compose.test.yaml down -v # Create DB container docker-run: @if docker compose up --build 2>/dev/null; then \ : ; \ else \ echo "Falling back to Docker Compose V1"; \ docker-compose up --build; \ fi # Shutdown DB container docker-down: @if docker compose down 2>/dev/null; then \ : ; \ else \ echo "Falling back to Docker Compose V1"; \ docker-compose down; \ fi watch-templ: templ generate --watch --proxy="http://localhost:8080" --cmd="go run ." # Live Reload watch: @if command -v air > /dev/null; then \ air; \ echo "Watching...";\ else \ read -p "Go's 'air' is not installed on your machine. Do you want to install it? [Y/n] " choice; \ if [ "$$choice" != "n" ] && [ "$$choice" != "N" ]; then \ go install github.com/air-verse/air@latest; \ air; \ echo "Watching...";\ else \ echo "You chose not to install air. Exiting..."; \ exit 1; \ fi; \ fi