18 lines
318 B
Python
18 lines
318 B
Python
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()]),
|
|
])
|