This commit is contained in:
2025-08-30 06:20:41 +02:00
parent 249438d8ef
commit bde3fc0df9
13 changed files with 2360 additions and 0 deletions

22
main.py Normal file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/env python3
from dotenv import load_dotenv
from nicegui import ui
from pages.page_main import MainPage
load_dotenv()
# Run the application
if __name__ in {"__main__", "__mp_main__"}:
@ui.page('/')
async def _():
await MainPage.create()
ui.run(
title='LivingAgents',
favicon='🔒',
show=False,
dark=False,
port=8080
)