diff options
| author | Nate Sesti <sestinj@gmail.com> | 2023-06-13 14:04:03 -0700 | 
|---|---|---|
| committer | Nate Sesti <sestinj@gmail.com> | 2023-06-13 14:04:03 -0700 | 
| commit | 3ef953bcb546d776b1b589b795cb3dcdb9c0da5d (patch) | |
| tree | a82c836fa43cd99c9d00b816d383f8b3d334782c /continuedev/src | |
| parent | c1e0f9a62a923a70121af71694cccccadeb3ed17 (diff) | |
| download | sncontinue-3ef953bcb546d776b1b589b795cb3dcdb9c0da5d.tar.gz sncontinue-3ef953bcb546d776b1b589b795cb3dcdb9c0da5d.tar.bz2 sncontinue-3ef953bcb546d776b1b589b795cb3dcdb9c0da5d.zip | |
updated list of verified pipelines
Diffstat (limited to 'continuedev/src')
| -rw-r--r-- | continuedev/src/continuedev/recipes/DeployPipelineAirflowRecipe/main.py | 13 | 
1 files changed, 12 insertions, 1 deletions
| diff --git a/continuedev/src/continuedev/recipes/DeployPipelineAirflowRecipe/main.py b/continuedev/src/continuedev/recipes/DeployPipelineAirflowRecipe/main.py index 503b0c85..2a3e3566 100644 --- a/continuedev/src/continuedev/recipes/DeployPipelineAirflowRecipe/main.py +++ b/continuedev/src/continuedev/recipes/DeployPipelineAirflowRecipe/main.py @@ -15,6 +15,7 @@ from .steps import SetupPipelineStep, DeployAirflowStep, RunPipelineStep  # 3. Deploy selected verified pipeline with Airflow  # 4. Set up Airflow locally? +  class DeployPipelineAirflowRecipe(Step):      hide: bool = True @@ -31,17 +32,27 @@ class DeployPipelineAirflowRecipe(Step):                      Which verified pipeline do you want to deploy with Airflow? The options are:                      - Asana                      - Chess.com +                    - Facebook Ads                      - GitHub                      - Google Analytics                      - Google Sheets                      - HubSpot +                    - Jira                      - Matomo +                    - Mux +                    - Notion                      - Pipedrive +                    - Pokemon +                    - Salesforce                      - Shopify                      - Strapi +                    - Stripe +                    - SQL Database +                    - Workable                      - Zendesk"""),                  options=[ -                    "asana_dlt", "chess", "github", "google_analytics", "google_sheets", "hubspot", "matomo", "pipedrive", "shopify_dlt", "strapi", "zendesk" +                    "asana_dlt", "chess", "github", "google_analytics", "google_sheets", "hubspot", "matomo", "pipedrive", "shopify_dlt", "strapi", "zendesk", +                    "facebook_ads", "jira", "mux", "notion", "pokemon", "salesforce", "stripe_analytics", "sql_database", "workable"                  ])          )          await sdk.run_step( | 
