Skip to content

Commit

Permalink
Update title for another 15 apps
Browse files Browse the repository at this point in the history
Former-commit-id: 3c2e08b
  • Loading branch information
xhlulu committed May 12, 2021
1 parent 24d2a6c commit 309a08e
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/dash-aerosandbox/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
1 change: 1 addition & 0 deletions apps/dash-avs-explorer/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
1 change: 1 addition & 0 deletions apps/dash-baseball-statistics/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions apps/dash-image-processing/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions apps/dash-live-model-training/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions apps/dash-medical-provider-charges/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
}
],
)
app.title = "Medical Provider Charges"
server = app.server

app.config["suppress_callback_exceptions"] = True
Expand Down
1 change: 1 addition & 0 deletions apps/dash-multipage-report/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
color_b = "#F8F8FF"

app = dash.Dash(__name__)
app.title = "Multipage Report"

server = app.server

Expand Down
1 change: 1 addition & 0 deletions apps/dash-object-detection/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions apps/dash-peaky-finders/peaky_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down
1 change: 1 addition & 0 deletions apps/dash-phylogeny/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
)

app = dash.Dash(__name__)
app.title = "Phylogeny Tree Explorer"
server = app.server

virus_name = "measles"
Expand Down
1 change: 1 addition & 0 deletions apps/dash-pk-calc/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@


app = dash.Dash(__name__)
app.title = "Pharmacokinetics Calculator"
server = app.server

APP_PATH = str(pl.Path(__file__).parent.resolve())
Expand Down
1 change: 1 addition & 0 deletions apps/dash-spatial-clustering/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
)

app = dash.Dash(__name__)
app.title = "Real Estate Spatial Clustering"
server = app.server
app.config.suppress_callback_exceptions = True

Expand Down
1 change: 1 addition & 0 deletions apps/dash-svm/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
{"name": "viewport", "content": "width=device-width, initial-scale=1.0"}
],
)
app.title = "Support Vector Machine"
server = app.server


Expand Down
1 change: 1 addition & 0 deletions apps/dash-tsne/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions apps/dash-yield-curve/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 309a08e

Please sign in to comment.