Initial upload: DevDash CLI with TUI dashboard
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 06:52:42 +00:00
parent f34ce93421
commit b3efd5d316

18
src/main.py Normal file
View File

@@ -0,0 +1,18 @@
from textual.app import App
from textual import events
from src.ui.screens.dashboard import DashboardScreen
class DevDashApp(App):
def __init__(self):
super().__init__()
self.refresh_interval = 30
self.current_repo = None
async def on_mount(self) -> None:
self.push_screen(DashboardScreen())
def main():
app = DevDashApp()
app.run()