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 | 7da5ab61f70044d39a3a2d93176e6d57ab3e5524 (patch) | |
tree | 5b4e7272e2f40d94a64db83e130af670baf366df | |
parent | fe4306b0c15761bbe0cace92050bc3fd216c7faf (diff) | |
download | sncontinue-7da5ab61f70044d39a3a2d93176e6d57ab3e5524.tar.gz sncontinue-7da5ab61f70044d39a3a2d93176e6d57ab3e5524.tar.bz2 sncontinue-7da5ab61f70044d39a3a2d93176e6d57ab3e5524.zip |
updated list of verified pipelines
-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( |