feat: init dashboard
This commit is contained in:
17
dashboard/pages/config.py
Normal file
17
dashboard/pages/config.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import dash
|
||||
from dash import html
|
||||
from dotenv import dotenv_values
|
||||
import os
|
||||
|
||||
env = {
|
||||
**dotenv_values(".env"),
|
||||
**os.environ,
|
||||
}
|
||||
|
||||
|
||||
dash.register_page(__name__, path='/config')
|
||||
|
||||
layout = html.Div([
|
||||
html.H1('This is our Config page'),
|
||||
html.Ul(children = [html.Li(f"{k} = {v}") for k,v in env.items()]),
|
||||
])
|
||||
9
dashboard/pages/home.py
Normal file
9
dashboard/pages/home.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import dash
|
||||
from dash import html
|
||||
|
||||
dash.register_page(__name__, path='/')
|
||||
|
||||
layout = html.Div([
|
||||
html.H1('This is our Home page'),
|
||||
html.Div('This is our Home page content.'),
|
||||
])
|
||||
Reference in New Issue
Block a user