forked from zauberzeug/nicegui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
executable file
·55 lines (36 loc) · 1.7 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python3
import os
from pathlib import Path
from fastapi import Request
from starlette.middleware.sessions import SessionMiddleware
import prometheus
from nicegui import app, ui
from website import anti_scroll_hack, documentation, fly, main_page, svg
prometheus.start_monitor(app)
# session middleware is required for demo in documentation and prometheus
app.add_middleware(SessionMiddleware, secret_key=os.environ.get('NICEGUI_SECRET_KEY', ''))
on_fly = fly.setup()
anti_scroll_hack.setup()
app.add_static_files('/favicon', str(Path(__file__).parent / 'website' / 'favicon'))
app.add_static_files('/fonts', str(Path(__file__).parent / 'website' / 'fonts'))
app.add_static_files('/static', str(Path(__file__).parent / 'website' / 'static'))
app.add_static_file(local_file=svg.PATH / 'logo.png', url_path='/logo.png')
app.add_static_file(local_file=svg.PATH / 'logo_square.png', url_path='/logo_square.png')
documentation.build_search_index()
@app.post('/dark_mode')
async def _post_dark_mode(request: Request) -> None:
app.storage.browser['dark_mode'] = (await request.json()).get('value')
@ui.page('/')
def _main_page() -> None:
main_page.create()
@ui.page('/documentation')
def _documentation_page() -> None:
documentation.render_page(documentation.registry[''], with_menu=False)
@ui.page('/documentation/{name}')
def _documentation_detail_page(name: str) -> None:
documentation.render_page(documentation.registry[name])
@app.get('/status')
def _status():
return 'Ok'
# NOTE: do not reload on fly.io (see https://github.com/zauberzeug/nicegui/discussions/1720#discussioncomment-7288741)
ui.run(uvicorn_reload_includes='*.py, *.css, *.html', reload=not on_fly, reconnect_timeout=10.0)