15 lines
349 B
Python
15 lines
349 B
Python
"""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")
|