# Wedding Phone Makefile # Simple commands to run the wedding phone system .PHONY: start test install clean help start: @echo "Starting Wedding Phone System..." uv run python rotary_phone_web.py test: @echo "Running audio tests..." uv run python test_complete.py install: @echo "Installing dependencies..." uv pip install -e . clean: @echo "Cleaning up..." rm -rf __pycache__ .pytest_cache templates/ find . -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null || true find . -type f -name "*.pyc" -delete help: @echo "Wedding Phone - Available Commands:" @echo "" @echo " make start - Start the wedding phone system" @echo " make test - Run audio tests" @echo " make install - Install dependencies" @echo " make clean - Clean temporary files" @echo " make help - Show this help message" @echo "" @echo "Or use UV directly:" @echo " uv run python rotary_phone_web.py" @echo " uv run python test_complete.py"