awesome-panel
awesome-panel copied to clipboard
Add another app
Thanks!
Hi @fmaussion
Thanks for the contribution.
Regarding the Simulator I was just not sure it was a Panel app as it states its a Bokeh app. Can you confirm its a Panel app?
The files you have changed are actually updated from the files application\config\resources.py
and application\config\authors.py
. The updates I believe I should make are
OGGM_EDU = Author(
name="OGGM EDU",
url="https://edu.oggm.org",
github_url="https://github.com/OGGM",
github_avatar_url="https://avatars2.githubusercontent.com/u/14758186",
)
and
Resource(
name="World Glaciers Explorer",
url="https://edu.oggm.org/en/latest/explorer.html",
thumbnail_png_path=THUMBNAILS_ROOT + "",
is_awesome=True,
tags=[tags.APP, tags.CODE],
author=authors.OGGM_EDU,
),
Resource(
name="Glacier Simulator",
url="https://edu.oggm.org/en/latest/simulator.html",
thumbnail_png_path=THUMBNAILS_ROOT + "",
is_awesome=True,
tags=[tags.APP, tags.CODE],
author=authors.OGGM_EDU,
),
Can you confirm?¨
Thanks again.
Can you confirm its a Panel app?
Yes! We call it "bokeh app" because we serve it on our server which is called https://bokeh.oggm.org -> in the end the engine which runs it all is Bokeh, but we use panel extensively. Here is the app's code: https://github.com/OGGM/glacier_simulator
Can you confirm?¨
Perfect thanks!