diff --git a/apps/dash-aerosandbox/app.py b/apps/dash-aerosandbox/app.py index 01d03c858..8583714c2 100644 --- a/apps/dash-aerosandbox/app.py +++ b/apps/dash-aerosandbox/app.py @@ -13,6 +13,7 @@ import pandas as pd app = dash.Dash(external_stylesheets=[dbc.themes.MINTY]) +app.title = "Aircraft CFD" server = app.server app.layout = dbc.Container( diff --git a/apps/dash-avs-explorer/app.py b/apps/dash-avs-explorer/app.py index 341a9c0ea..a4e008916 100644 --- a/apps/dash-avs-explorer/app.py +++ b/apps/dash-avs-explorer/app.py @@ -22,6 +22,7 @@ def Header(name, app): mapbox_token = os.getenv("MAPBOX_ACCESS_TOKEN") app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP]) +app.title = "Autonomous Vehicle Visualization" server = app.server STYLES = ["light", "dark", "satellite"] diff --git a/apps/dash-baseball-statistics/app.py b/apps/dash-baseball-statistics/app.py index 2a05e95c0..e4fb8685b 100644 --- a/apps/dash-baseball-statistics/app.py +++ b/apps/dash-baseball-statistics/app.py @@ -9,6 +9,7 @@ external_stylesheets=[dbc.themes.SANDSTONE], meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}], ) +app.title = "Baseball Historical Statistics" # set app server to variable for deployment srv = app.server diff --git a/apps/dash-brain-viewer/app.py b/apps/dash-brain-viewer/app.py index 767278f51..e1b4f1c0a 100644 --- a/apps/dash-brain-viewer/app.py +++ b/apps/dash-brain-viewer/app.py @@ -14,6 +14,8 @@ meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}], ) +app.title = "Brain Surface Viewer" + server = app.server GITHUB_LINK = os.environ.get( diff --git a/apps/dash-clinical-analytics/app.py b/apps/dash-clinical-analytics/app.py index 596edbd51..4dd1b7a0d 100644 --- a/apps/dash-clinical-analytics/app.py +++ b/apps/dash-clinical-analytics/app.py @@ -13,6 +13,7 @@ __name__, meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}], ) +app.title = "Clinical Analytics Dashboard" server = app.server app.config.suppress_callback_exceptions = True diff --git a/apps/dash-financial-report/app.py b/apps/dash-financial-report/app.py index 719217c03..e30c293f5 100644 --- a/apps/dash-financial-report/app.py +++ b/apps/dash-financial-report/app.py @@ -13,8 +13,9 @@ ) app = dash.Dash( - __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}] + __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}], ) +app.title = "Financial Report" server = app.server # Describe the layout/ UI of the app diff --git a/apps/dash-image-processing/app.py b/apps/dash-image-processing/app.py index 05a3ad24c..92e07ef5b 100644 --- a/apps/dash-image-processing/app.py +++ b/apps/dash-image-processing/app.py @@ -26,6 +26,7 @@ APP_PATH = str(pathlib.Path(__file__).parent.resolve()) app = dash.Dash(__name__) +app.title = "Image Processing App" server = app.server if "BUCKET_NAME" in os.environ: diff --git a/apps/dash-interest-rate/app.py b/apps/dash-interest-rate/app.py index 67764dcc8..47c438e2c 100644 --- a/apps/dash-interest-rate/app.py +++ b/apps/dash-interest-rate/app.py @@ -66,7 +66,8 @@ # Define app -app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP]) +app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP],) +app.title = "Interest Rate Modeling" server = app.server cache = Cache( app.server, diff --git a/apps/dash-live-model-training/app.py b/apps/dash-live-model-training/app.py index 931890c21..8bf17b394 100644 --- a/apps/dash-live-model-training/app.py +++ b/apps/dash-live-model-training/app.py @@ -18,6 +18,7 @@ app = dash.Dash( __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}] ) +app.title = "Live Model Training" server = app.server demo_mode = True diff --git a/apps/dash-manufacture-spc-dashboard/app.py b/apps/dash-manufacture-spc-dashboard/app.py index b7669a98a..70562fa40 100644 --- a/apps/dash-manufacture-spc-dashboard/app.py +++ b/apps/dash-manufacture-spc-dashboard/app.py @@ -15,6 +15,7 @@ __name__, meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}], ) +app.title = "Manufacturing SPC Dashboard" server = app.server app.config["suppress_callback_exceptions"] = True diff --git a/apps/dash-medical-provider-charges/app.py b/apps/dash-medical-provider-charges/app.py index 1038f88f6..00b474e9c 100644 --- a/apps/dash-medical-provider-charges/app.py +++ b/apps/dash-medical-provider-charges/app.py @@ -18,6 +18,7 @@ } ], ) +app.title = "Medical Provider Charges" server = app.server app.config["suppress_callback_exceptions"] = True diff --git a/apps/dash-multipage-report/app.py b/apps/dash-multipage-report/app.py index d1e8ed990..031b8afbe 100644 --- a/apps/dash-multipage-report/app.py +++ b/apps/dash-multipage-report/app.py @@ -36,6 +36,7 @@ color_b = "#F8F8FF" app = dash.Dash(__name__) +app.title = "Multipage Report" server = app.server diff --git a/apps/dash-object-detection/app.py b/apps/dash-object-detection/app.py index 7939c1363..bbd2a9e99 100644 --- a/apps/dash-object-detection/app.py +++ b/apps/dash-object-detection/app.py @@ -15,6 +15,7 @@ __name__, meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}], ) +app.title = "Object Detection Explorer" server = app.server app.config.suppress_callback_exceptions = True diff --git a/apps/dash-oil-and-gas/app.py b/apps/dash-oil-and-gas/app.py index 1715d00e6..4dcce7d65 100644 --- a/apps/dash-oil-and-gas/app.py +++ b/apps/dash-oil-and-gas/app.py @@ -20,8 +20,9 @@ DATA_PATH = PATH.joinpath("data").resolve() app = dash.Dash( - __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}] + __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}], ) +app.title = "Oil & Gas Wells" server = app.server # Create controls diff --git a/apps/dash-opioid-epidemic/app.py b/apps/dash-opioid-epidemic/app.py index f02657755..7df7ff5b2 100644 --- a/apps/dash-opioid-epidemic/app.py +++ b/apps/dash-opioid-epidemic/app.py @@ -17,6 +17,7 @@ {"name": "viewport", "content": "width=device-width, initial-scale=1.0"} ], ) +app.title = "US Opioid Epidemic" server = app.server # Load data diff --git a/apps/dash-peaky-finders/peaky_app.py b/apps/dash-peaky-finders/peaky_app.py index 73431fe70..a0a353c42 100644 --- a/apps/dash-peaky-finders/peaky_app.py +++ b/apps/dash-peaky-finders/peaky_app.py @@ -31,6 +31,7 @@ app = dash.Dash( external_stylesheets=[dbc.themes.LUX], suppress_callback_exceptions=True ) +app.title = "US Electric Grid Forecasting" server = app.server """Homepage""" diff --git a/apps/dash-phylogeny/app.py b/apps/dash-phylogeny/app.py index d6041e916..3dd09ca51 100644 --- a/apps/dash-phylogeny/app.py +++ b/apps/dash-phylogeny/app.py @@ -16,6 +16,7 @@ ) app = dash.Dash(__name__) +app.title = "Phylogeny Tree Explorer" server = app.server virus_name = "measles" diff --git a/apps/dash-pk-calc/app.py b/apps/dash-pk-calc/app.py index dcd0e2b37..e52cf70a8 100644 --- a/apps/dash-pk-calc/app.py +++ b/apps/dash-pk-calc/app.py @@ -29,6 +29,7 @@ app = dash.Dash(__name__) +app.title = "Pharmacokinetics Calculator" server = app.server APP_PATH = str(pl.Path(__file__).parent.resolve()) diff --git a/apps/dash-spatial-clustering/app.py b/apps/dash-spatial-clustering/app.py index b7ba52c38..36b9ec114 100644 --- a/apps/dash-spatial-clustering/app.py +++ b/apps/dash-spatial-clustering/app.py @@ -17,6 +17,7 @@ ) app = dash.Dash(__name__) +app.title = "Real Estate Spatial Clustering" server = app.server app.config.suppress_callback_exceptions = True diff --git a/apps/dash-svm/app.py b/apps/dash-svm/app.py index de1c3e90e..b17a5b623 100644 --- a/apps/dash-svm/app.py +++ b/apps/dash-svm/app.py @@ -20,6 +20,7 @@ {"name": "viewport", "content": "width=device-width, initial-scale=1.0"} ], ) +app.title = "Support Vector Machine" server = app.server diff --git a/apps/dash-tsne/app.py b/apps/dash-tsne/app.py index c532af260..ec959513c 100644 --- a/apps/dash-tsne/app.py +++ b/apps/dash-tsne/app.py @@ -10,6 +10,7 @@ app = dash.Dash( __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}] ) +app.title = "t-SNE Explorer" server = app.server app.layout = create_layout(app) diff --git a/apps/dash-uber-rides-demo/app.py b/apps/dash-uber-rides-demo/app.py index 520dd2ade..38d233c80 100644 --- a/apps/dash-uber-rides-demo/app.py +++ b/apps/dash-uber-rides-demo/app.py @@ -11,8 +11,9 @@ app = dash.Dash( - __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}] + __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}], ) +app.title = "New York Uber Rides" server = app.server diff --git a/apps/dash-web-trader/app.py b/apps/dash-web-trader/app.py index 2bedf6438..c5b8fa640 100644 --- a/apps/dash-web-trader/app.py +++ b/apps/dash-web-trader/app.py @@ -18,8 +18,9 @@ app = dash.Dash( - __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}] + __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}], ) +app.title = "FOREX Web Trader" server = app.server diff --git a/apps/dash-wind-streaming/app.py b/apps/dash-wind-streaming/app.py index 0f7554f36..ca37f6220 100644 --- a/apps/dash-wind-streaming/app.py +++ b/apps/dash-wind-streaming/app.py @@ -18,6 +18,7 @@ __name__, meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}], ) +app.title = "Wind Speed Dashboard" server = app.server diff --git a/apps/dash-yield-curve/app.py b/apps/dash-yield-curve/app.py index 239c24bcd..d2c4354df 100644 --- a/apps/dash-yield-curve/app.py +++ b/apps/dash-yield-curve/app.py @@ -13,6 +13,7 @@ app = dash.Dash( __name__, meta_tags=[{"name": "viewport", "content": "width=device-width"}] ) +app.title = "Yield Curve Analysis" server = app.server # get relative data folder