From 1e39fe277e31ddd04cbf411a1c508aa9cd4ad9a1 Mon Sep 17 00:00:00 2001 From: Ivan Date: Sun, 30 Nov 2025 15:21:28 -0600 Subject: [PATCH] Add 'run' target to Makefile for launching Ren Browser - Introduced a new 'run' target to the Makefile to start the Ren Browser using Poetry. - Updated help output to include the new 'run' command for user guidance. --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9c8fa3c..4338e57 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # Ren Browser Makefile -.PHONY: help build poetry-build linux apk clean test lint format +.PHONY: help build poetry-build linux apk clean test lint format run # Default target help: @@ -8,6 +8,7 @@ help: @echo "Available targets:" @echo " build - Build the project (alias for poetry-build)" @echo " poetry-build - Build project with Poetry" + @echo " run - Launch Ren Browser via Poetry" @echo " linux - Build Linux package" @echo " apk - Build Android APK" @echo " test - Run tests" @@ -47,6 +48,11 @@ format: @echo "Formatting code..." poetry run ruff format . +# Run application +run: + @echo "Starting Ren Browser..." + poetry run ren-browser + # Clean build artifacts clean: @echo "Cleaning build artifacts..."