awesome-panel icon indicating copy to clipboard operation
awesome-panel copied to clipboard

Add another app

Open fmaussion opened this issue 4 years ago • 2 comments

Thanks!

fmaussion avatar Sep 27 '20 19:09 fmaussion

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?

image


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.

MarcSkovMadsen avatar Sep 28 '20 04:09 MarcSkovMadsen

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!

fmaussion avatar Sep 28 '20 12:09 fmaussion