This commit is contained in:
2026-02-12 00:05:42 -05:00
parent 7d86d37dea
commit 49edd5ba84
47 changed files with 4502 additions and 1 deletions

14
run_with_logging.py Normal file
View File

@@ -0,0 +1,14 @@
"""Run the app with logging enabled."""
import sys
from pathlib import Path
# Add src to path
sys.path.insert(0, str(Path(__file__).parent / "src"))
from jellycleanarr.ui.app import JellycleanApp
if __name__ == "__main__":
app = JellycleanApp()
# Run with logging (logs go to textual.log by default)
app.run(log="textual_debug.log")