Skip to content

Commit

Permalink
Merge pull request #7 from danhooke/ploomber_v1
Browse files Browse the repository at this point in the history
Ploomber v1
  • Loading branch information
danhooke authored Mar 10, 2024
2 parents 871f9c9 + acad2da commit b4b70ca
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ploomber-cloud.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Ploomber Cloud

on:
push:
branches:
# only deploy from the main branch
- main

jobs:
deploy-to-ploomber-cloud:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: '3.11'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ploomber-cloud
- name: Deploy
env:
PLOOMBER_CLOUD_KEY: ${{ secrets.PLOOMBER_CLOUD_KEY }}
run: |
ploomber-cloud deploy --watch
# The --watch flag will print deployment status updates to the logs.
# To learn more, visit: https://docs.cloud.ploomber.io/en/latest/user-guide/github.html
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# CSE_dashboards
View the 👉 [**deployment**](https://cold-voice-5221.ploomberapp.io/app) 👈 (using [Ploomber](https://ploomber.io/)).

Exploratory dashboards for gridded data from Werning et al. (2023).

<a href="https://zenodo.org/doi/10.5281/zenodo.7971429" target="_blank"><img src="https://zenodo.org/badge/DOI/10.5281/zenodo.7971429.svg" alt="DOI"/></a>

Using *Panel, Xarray, hvPlot, Bokeh and Ploomber*.

View the 👉 [**deployment**](https://cold-voice-5221.ploomberapp.io/app) 👈 (using [Ploomber](https://ploomber.io/)).

<img src="./images/preview1.png" alt="preview of the dashboard" width="100%">

4 changes: 4 additions & 0 deletions ploomber-cloud.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"id": "cold-voice-5221",
"type": "panel"
}

0 comments on commit b4b70ca

Please sign in to comment.