├── .asf.yaml ├── .dockerignore ├── .editorconfig ├── .github ├── scripts │ ├── add_watermark.py │ ├── dump-docs-packages-metadata.py │ ├── images │ │ └── staging.png │ └── refresh_pmc_committer_images.py └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .hadolint.yaml ├── .pre-commit-config.yaml ├── CONTRIBUTE.md ├── Dockerfile ├── README.md ├── landing-pages ├── .babelrc ├── .eslintignore ├── .eslintrc.yml ├── .gitignore ├── .stylelintignore ├── LICENSE ├── check-links.sh ├── create-index.js ├── package.json ├── postcss.config.js ├── site │ ├── .hugo_build.lock │ ├── archetypes │ │ ├── blog.md │ │ └── testimonials.md │ ├── assets │ │ ├── icons │ │ │ ├── accordion-arrow.svg │ │ │ ├── airflow-logo.svg │ │ │ ├── ask-question-icon.svg │ │ │ ├── bug-icon.svg │ │ │ ├── close-icon.svg │ │ │ ├── content-hamburger-icon.svg │ │ │ ├── contribute-icon.svg │ │ │ ├── date-icon.svg │ │ │ ├── documentation-icon.svg │ │ │ ├── dynamic-icon.svg │ │ │ ├── easy-use-icon.svg │ │ │ ├── elegant-icon.svg │ │ │ ├── extensible-icon.svg │ │ │ ├── facebook-small.svg │ │ │ ├── fix-bug-icon.svg │ │ │ ├── github-small.svg │ │ │ ├── github-white.svg │ │ │ ├── github.svg │ │ │ ├── hamburger-icon.svg │ │ │ ├── integrations-icon.svg │ │ │ ├── intent-icon.svg │ │ │ ├── jira.svg │ │ │ ├── join-devlist-icon.svg │ │ │ ├── linkedin-small.svg │ │ │ ├── linkedin.svg │ │ │ ├── meetup-icon.svg │ │ │ ├── members-icon.svg │ │ │ ├── new-feature-icon.svg │ │ │ ├── open-source-icon.svg │ │ │ ├── play-icon.svg │ │ │ ├── project-icon.svg │ │ │ ├── promote-icon.svg │ │ │ ├── pure-python-icon.svg │ │ │ ├── scalable-icon.svg │ │ │ ├── search-icon.svg │ │ │ ├── slack.svg │ │ │ ├── stackoverflow.svg │ │ │ ├── star-icon.svg │ │ │ ├── twitter-small.svg │ │ │ ├── twitter-white.svg │ │ │ ├── twitter.svg │ │ │ ├── useful-ui-icon.svg │ │ │ └── youtube.svg │ │ └── scss │ │ │ ├── _accordion.scss │ │ │ ├── _avatar.scss │ │ │ ├── _base-layout.scss │ │ │ ├── _blog-page.scss │ │ │ ├── _buttons.scss │ │ │ ├── _case-study.scss │ │ │ ├── _colors.scss │ │ │ ├── _community-page.scss │ │ │ ├── _content-drawer.scss │ │ │ ├── _docs.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _feature.scss │ │ │ ├── _fonts.scss │ │ │ ├── _footer.scss │ │ │ ├── _four-oh-four.scss │ │ │ ├── _header.scss │ │ │ ├── _highlights.scss │ │ │ ├── _home-page.scss │ │ │ ├── _install-page.scss │ │ │ ├── _list-boxes.scss │ │ │ ├── _markdown-content.scss │ │ │ ├── _media.scss │ │ │ ├── _meetups.scss │ │ │ ├── _navbar.scss │ │ │ ├── _ol-ul.scss │ │ │ ├── _pager.scss │ │ │ ├── _pygments.scss │ │ │ ├── _quote.scss │ │ │ ├── _rating.scss │ │ │ ├── _roadmap.scss │ │ │ ├── _rst-content.scss │ │ │ ├── _search.scss │ │ │ ├── _share-social-media.scss │ │ │ ├── _suggest-change.scss │ │ │ ├── _survey.scss │ │ │ ├── _testimonial.scss │ │ │ ├── _text-with-icon.scss │ │ │ ├── _typography.scss │ │ │ ├── _usecasedescription.scss │ │ │ ├── _variables.scss │ │ │ ├── _video.scss │ │ │ └── main-custom.scss │ ├── config.toml │ ├── content │ │ └── en │ │ │ ├── _index.html │ │ │ ├── announcements │ │ │ └── _index.md │ │ │ ├── blog │ │ │ ├── Its-a-breeze-to-develop-apache-airflow.md │ │ │ ├── _index.md │ │ │ ├── airflow-1.10.10 │ │ │ │ ├── index.md │ │ │ │ ├── rbac-ui-timezone.gif │ │ │ │ └── trigger-dag-conf.png │ │ │ ├── airflow-1.10.12 │ │ │ │ └── index.md │ │ │ ├── airflow-1.10.8-1.10.9 │ │ │ │ ├── airflow-dag-tags.png │ │ │ │ └── index.md │ │ │ ├── airflow-2.10.0 │ │ │ │ ├── DAG_reparse_button_detail.png │ │ │ │ ├── DAG_reparsing_button_list.png │ │ │ │ ├── airflow_dark_mode.png │ │ │ │ ├── airflow_light_mode.png │ │ │ │ ├── dag_dependencies_legend.png │ │ │ │ ├── dataset_details.png │ │ │ │ ├── dataset_info.png │ │ │ │ ├── dataset_list.png │ │ │ │ ├── dataset_toggle_off.png │ │ │ │ ├── dataset_toggle_on.png │ │ │ │ ├── dependency_graph.png │ │ │ │ ├── index.md │ │ │ │ ├── render_dataset_conditions.png │ │ │ │ ├── task_instance_history.png │ │ │ │ └── task_instance_history_log.png │ │ │ ├── airflow-2.2.0 │ │ │ │ └── index.md │ │ │ ├── airflow-2.3.0 │ │ │ │ ├── grid-view.png │ │ │ │ └── index.md │ │ │ ├── airflow-2.4.0 │ │ │ │ └── index.md │ │ │ ├── airflow-2.5.0 │ │ │ │ └── index.md │ │ │ ├── airflow-2.6.0 │ │ │ │ ├── filter_downstream.png │ │ │ │ ├── graph.png │ │ │ │ ├── index.md │ │ │ │ ├── trigger_dag_form.png │ │ │ │ └── trigger_logging.png │ │ │ ├── airflow-2.7.0 │ │ │ │ ├── cluster_activity.png │ │ │ │ ├── graph_in_grid.png │ │ │ │ └── index.md │ │ │ ├── airflow-2.8.0 │ │ │ │ ├── index.md │ │ │ │ ├── multiselect-states.png │ │ │ │ └── task_status_visibility.png │ │ │ ├── airflow-2.9.0 │ │ │ │ ├── create-manual-dataset-event.png │ │ │ │ ├── custom-log-grouping-expanded.png │ │ │ │ ├── custom-log-grouping.png │ │ │ │ ├── dataset-view-filtering.png │ │ │ │ ├── datasets-in-graph.png │ │ │ │ ├── display-names.png │ │ │ │ ├── dynamic-task-mapping-custom-names.png │ │ │ │ ├── index.md │ │ │ │ ├── pre-post-logs-grouped.png │ │ │ │ ├── run-duration.png │ │ │ │ └── task-duration.png │ │ │ ├── airflow-survey-2020 │ │ │ │ ├── What_best_describes_your_current_occupation.png │ │ │ │ ├── What_executor_type_do_you_use.png │ │ │ │ ├── What_external_services_do_you_use_in_your_Airflow_DAGs.png │ │ │ │ ├── Where_are_you_based.png │ │ │ │ └── index.md │ │ │ ├── airflow-survey-2022 │ │ │ │ ├── images │ │ │ │ │ ├── image1.png │ │ │ │ │ ├── image10.png │ │ │ │ │ ├── image11.png │ │ │ │ │ ├── image12.png │ │ │ │ │ ├── image13.png │ │ │ │ │ ├── image14.png │ │ │ │ │ ├── image15.png │ │ │ │ │ ├── image16.png │ │ │ │ │ ├── image17.png │ │ │ │ │ ├── image18.png │ │ │ │ │ ├── image2.png │ │ │ │ │ ├── image3.png │ │ │ │ │ ├── image4.png │ │ │ │ │ ├── image5.png │ │ │ │ │ ├── image6.png │ │ │ │ │ ├── image7.png │ │ │ │ │ ├── image8.png │ │ │ │ │ └── image9.png │ │ │ │ └── index.md │ │ │ ├── airflow-survey-2023 │ │ │ │ ├── images │ │ │ │ │ ├── Airflow-Survey-2023-Results--Airflow-Usage-Page-1-Revised.png │ │ │ │ │ ├── Airflow-Survey-2023-Results-Airflow-Usage-Page-3-Revised-Landscape@2x.png │ │ │ │ │ ├── Astronomer-Airflow-Survey-2023-Results-Airflow-Usage-Page-2-Landscape.png │ │ │ │ │ ├── Astronomer-Airflow-Survey-2023-Results-Future-Landscape@2x.png │ │ │ │ │ ├── Astronomer_Community_and_Contribution.png │ │ │ │ │ └── Astronomer_Demographics.png │ │ │ │ └── index.md │ │ │ ├── airflow-survey-2024 │ │ │ │ ├── images │ │ │ │ │ └── Airflow-Survey-2024-Results-v2.png │ │ │ │ └── index.md │ │ │ ├── airflow-survey │ │ │ │ ├── index.md │ │ │ │ ├── plot1.png │ │ │ │ ├── plot2.png │ │ │ │ └── plot3.png │ │ │ ├── airflow-three-point-oh-is-here │ │ │ │ ├── airflow-3.0-ui.gif │ │ │ │ ├── backfill.png │ │ │ │ ├── index.md │ │ │ │ └── versioning_ui.gif │ │ │ ├── airflow-two-point-oh-is-here │ │ │ │ ├── airflow-2.0-ui.gif │ │ │ │ └── index.md │ │ │ ├── airflow_summit_2021.md │ │ │ ├── airflow_summit_2022.md │ │ │ ├── announcing-new-website.md │ │ │ ├── apache-airflow-for-newcomers │ │ │ │ ├── Simple_dag.png │ │ │ │ ├── airflow-ui.png │ │ │ │ ├── index.md │ │ │ │ └── semicomplex.png │ │ │ ├── apache-con-europe-2019-thoughts-and-insights-by-airflow-committers.md │ │ │ ├── documenting-using-local-development-environments.md │ │ │ ├── experience-in-google-season-of-docs-2019-with-apache-airflow.md │ │ │ ├── experience-with-airflow-as-an-outreachy-intern.md │ │ │ ├── fab-oid-vulnerability │ │ │ │ └── index.md │ │ │ ├── implementing-stable-API-for-Apache-Airflow.md │ │ │ └── introducing_setup_teardown │ │ │ │ ├── index.md │ │ │ │ ├── simple.png │ │ │ │ └── task-group-arrow.png │ │ │ ├── code-of-conduct │ │ │ └── _index.html │ │ │ ├── community │ │ │ ├── _index.html │ │ │ └── resources.html │ │ │ ├── docs │ │ │ └── _index.md │ │ │ ├── ecosystem │ │ │ └── _index.md │ │ │ ├── meetups │ │ │ └── _index.html │ │ │ ├── privacy-notice │ │ │ └── _index.md │ │ │ ├── roadmap │ │ │ └── _index.md │ │ │ ├── search.md │ │ │ ├── survey │ │ │ └── _index.html │ │ │ └── use-cases │ │ │ ├── _index.html │ │ │ ├── adjoe.md │ │ │ ├── adobe.md │ │ │ ├── adyen.md │ │ │ ├── big-fish-games.md │ │ │ ├── business_operations.md │ │ │ ├── dish.md │ │ │ ├── etl_analytics.md │ │ │ ├── experity.md │ │ │ ├── infrastructure-management.md │ │ │ ├── mlops.md │ │ │ ├── onefootball.md │ │ │ ├── plarium-krasnodar.md │ │ │ ├── seniorlink.md │ │ │ ├── sift.md │ │ │ ├── snapp.md │ │ │ └── suse.md │ ├── data │ │ ├── .keep │ │ ├── case_studies.json │ │ ├── committers.json │ │ ├── integrations.json │ │ ├── pmc.json │ │ └── videos.json │ ├── layouts │ │ ├── 404.html │ │ ├── _default │ │ │ └── baseof.html │ │ ├── blog │ │ │ ├── baseof.html │ │ │ ├── content.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── community │ │ │ ├── baseof.html │ │ │ └── list.html │ │ ├── docs │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── index.html │ │ ├── install │ │ │ ├── baseof.html │ │ │ └── list.html │ │ ├── meetups │ │ │ ├── baseof.html │ │ │ └── list.html │ │ ├── partials │ │ │ ├── blog-pager.html │ │ │ ├── boxes │ │ │ │ ├── blogpost.html │ │ │ │ ├── committer.html │ │ │ │ ├── event.html │ │ │ │ ├── integration.html │ │ │ │ ├── testimonial.html │ │ │ │ └── use-cases.html │ │ │ ├── buttons │ │ │ │ ├── button-filled.html │ │ │ │ ├── button-hollow.html │ │ │ │ └── button-with-icon.html │ │ │ ├── favicons.html │ │ │ ├── feature.html │ │ │ ├── footer.html │ │ │ ├── head.html │ │ │ ├── hooks │ │ │ │ └── head-end.html │ │ │ ├── lang-selector.html │ │ │ ├── navbar.html │ │ │ ├── pager.html │ │ │ ├── quote.html │ │ │ ├── rating.html │ │ │ ├── scripts.html │ │ │ ├── share-social-media.html │ │ │ ├── sidebar-tree.html │ │ │ ├── suggest-change.html │ │ │ ├── text-with-icon.html │ │ │ ├── usecasedescription.html │ │ │ ├── version-selector.html │ │ │ ├── video-section.html │ │ │ └── youtube.html │ │ ├── privacy-notice │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── roadmap │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── shortcodes │ │ │ ├── accordion.html │ │ │ └── rawhtml.html │ │ ├── taxonomy │ │ │ ├── baseof.html │ │ │ └── tag.html │ │ └── use-cases │ │ │ ├── baseof.html │ │ │ ├── content.html │ │ │ ├── list.html │ │ │ └── single.html │ └── static │ │ ├── .htaccess │ │ ├── .keep │ │ ├── .well-known │ │ └── atproto-did │ │ ├── _gen │ │ └── indexes │ │ │ └── .keep │ │ ├── artifacthub-repo.yml │ │ ├── browserconfig.xml │ │ ├── data │ │ └── survey-responses │ │ │ ├── airflow-user-survey-responses-2020.csv.zip │ │ │ └── airflow-user-survey-responses-2022.csv.zip │ │ ├── external │ │ ├── css │ │ │ ├── OpenSans.css │ │ │ ├── Roboto.css │ │ │ ├── RobotoMono.css │ │ │ └── Rubik.css │ │ ├── fonts │ │ │ ├── OpenSans-italic.woff2 │ │ │ ├── OpenSans-normal.woff2 │ │ │ ├── Roboto-italic.woff2 │ │ │ ├── Roboto-normal.woff2 │ │ │ ├── RobotoMono-normal.woff2 │ │ │ └── Rubik-normal.woff2 │ │ ├── js │ │ │ ├── cdnjs.cloudflare.com-1.14.3-popper.min.js │ │ │ ├── jquery-3.3.1.min.js │ │ │ ├── jquery-3.3.1.slim.min.js │ │ │ ├── jquery-3.4.1.min.js │ │ │ └── stackpath.bootstrapcdn.com-4.1.3-bootstrap.min.js │ │ └── profiles │ │ │ ├── BasPH.png │ │ │ ├── KevinYang21.png │ │ │ ├── Lee-W.png │ │ │ ├── XD-DENG.png │ │ │ ├── aijamalnk.png │ │ │ ├── alexvanboxel.png │ │ │ ├── amoghrajesh.png │ │ │ ├── aneesh-joseph.png │ │ │ ├── aoen.png │ │ │ ├── artwr.png │ │ │ ├── ashb.png │ │ │ ├── bbovenzi.png │ │ │ ├── bolkedebruin.png │ │ │ ├── bugraoz93.png │ │ │ ├── criccomini.png │ │ │ ├── dimberman.png │ │ │ ├── dirrao.png │ │ │ ├── dstandish.png │ │ │ ├── eladkal.png │ │ │ ├── ephraimbuddy.png │ │ │ ├── feluelle.png │ │ │ ├── feng-tao.png │ │ │ ├── ferruzzi.png │ │ │ ├── fokko.png │ │ │ ├── gopidesupavan.png │ │ │ ├── hiteshs.png │ │ │ ├── houqp.png │ │ │ ├── hussein-awala.png │ │ │ ├── jason810496.png │ │ │ ├── jedcunningham.png │ │ │ ├── jgao54.png │ │ │ ├── jghoman.png │ │ │ ├── jhtimmins.png │ │ │ ├── jmcarp.png │ │ │ ├── josh-fell.png │ │ │ ├── jscheffl.png │ │ │ ├── kaxil.png │ │ │ ├── leahecole.png │ │ │ ├── malthe.png │ │ │ ├── mik-laj.png │ │ │ ├── milton0825.png │ │ │ ├── mistercrunch.png │ │ │ ├── mobuchowski.png │ │ │ ├── msumit.png │ │ │ ├── o-nikolas.png │ │ │ ├── pankajastro.png │ │ │ ├── pankajkoti.png │ │ │ ├── patrickleotardif.png │ │ │ ├── phanikumv.png │ │ │ ├── pierrejeambrun.png │ │ │ ├── pingzh.png │ │ │ ├── potiuk.png │ │ │ ├── r39132.png │ │ │ ├── rawwar.png │ │ │ ├── rnhttr.png │ │ │ ├── romsharon98.png │ │ │ ├── ryanahamilton.png │ │ │ ├── ryw.png │ │ │ ├── saguziel.png │ │ │ ├── sekikn.png │ │ │ ├── shahar1.png │ │ │ ├── shubhamraj-git.png │ │ │ ├── taragolis.png │ │ │ ├── tirkarthi.png │ │ │ ├── turbaszek.png │ │ │ ├── uranusjr.png │ │ │ ├── utkarsharma2.png │ │ │ ├── vatsrahul1001.png │ │ │ ├── vikramkoka.png │ │ │ ├── vincbeck.png │ │ │ ├── xinbinhuang.png │ │ │ ├── yuqian90.png │ │ │ └── zhongjiajie.png │ │ ├── favicon.ico │ │ ├── favicons │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ │ ├── images │ │ ├── airflow_dark_bg.png │ │ ├── anchor.svg │ │ ├── commiter-placeholder.svg │ │ ├── feature-image.png │ │ └── tick.svg │ │ ├── index.yaml │ │ ├── integration-logos │ │ ├── airbyte │ │ │ └── Airbyte.png │ │ ├── alibaba │ │ │ └── cloud │ │ │ │ └── alibabacloud-oss.png │ │ ├── apache │ │ │ ├── Livy.png │ │ │ ├── cassandra-3.png │ │ │ ├── drill.png │ │ │ ├── druid-1.png │ │ │ ├── hadoop.png │ │ │ ├── hive.png │ │ │ ├── kylin.png │ │ │ ├── pig.png │ │ │ ├── pinot.png │ │ │ ├── spark.png │ │ │ └── sqoop.png │ │ ├── aws │ │ │ ├── AWS-Batch_light-bg@4x.png │ │ │ ├── AWS-Cloud-alt_light-bg@4x.png │ │ │ ├── AWS-CloudFormation_light-bg@4x.png │ │ │ ├── AWS-DataSync_light-bg@4x.png │ │ │ ├── AWS-Database-Migration-Service_64@5x.png │ │ │ ├── AWS-Glue_light-bg@4x.png │ │ │ ├── AWS-Lambda_light-bg@4x.png │ │ │ ├── AWS-STS_light-bg@4x.png │ │ │ ├── AWS-Secrets-Manager_light-bg@4x.png │ │ │ ├── AWS-Step-Functions_light-bg@4x.png │ │ │ ├── Amazon-Athena_light-bg@4x.png │ │ │ ├── Amazon-CloudWatch_light-bg@4x.png │ │ │ ├── Amazon-DynamoDB_light-bg@4x.png │ │ │ ├── Amazon-EC2_light-bg@4x.png │ │ │ ├── Amazon-EMR_light-bg@4x.png │ │ │ ├── Amazon-ElastiCache_light-bg@4x.png │ │ │ ├── Amazon-Elastic-Container-Service_light-bg@4x.png │ │ │ ├── Amazon-Elastic-Kubernetes-Service_light-bg@4x.png │ │ │ ├── Amazon-Kinesis-Data-Firehose_light-bg@4x.png │ │ │ ├── Amazon-Quicksight_light-bg@4x.png │ │ │ ├── Amazon-RDS_light-bg@4x.png │ │ │ ├── Amazon-Redshift_light-bg@4x.png │ │ │ ├── Amazon-S3-Glacier_light-bg@4x.png │ │ │ ├── Amazon-SageMaker_light-bg@4x.png │ │ │ ├── Amazon-Simple-Email-Service-SES_light-bg@4x.png │ │ │ ├── Amazon-Simple-Notification-Service-SNS_light-bg@4x.png │ │ │ ├── Amazon-Simple-Queue-Service-SQS_light-bg@4x.png │ │ │ └── Amazon-Simple-Storage-Service-S3_light-bg@4x.png │ │ ├── azure │ │ │ ├── Azure Cosmos DB.svg │ │ │ ├── Azure Data Factory.svg │ │ │ ├── Azure Files.svg │ │ │ ├── Blob Storage.svg │ │ │ ├── Container Instances.svg │ │ │ ├── Data Lake Storage.svg │ │ │ ├── Microsoft-Azure-Batch.png │ │ │ ├── Microsoft-Azure-Data-Explorer.png │ │ │ ├── Microsoft-Azure-Fileshare.png │ │ │ └── Microsoft-Azure.png │ │ ├── celery │ │ │ └── Celery.png │ │ ├── cloudant │ │ │ └── Cloudant.png │ │ ├── databricks │ │ │ └── Databricks.png │ │ ├── datadog │ │ │ └── datadog.png │ │ ├── dbt │ │ │ └── dbt.png │ │ ├── dingding │ │ │ └── Dingding.png │ │ ├── discord │ │ │ └── Discord.png │ │ ├── docker │ │ │ ├── Docker-Swarm.png │ │ │ └── Docker.png │ │ ├── elasticsearch │ │ │ └── Elasticsearch.png │ │ ├── exasol │ │ │ └── Exasol.png │ │ ├── facebook │ │ │ └── Facebook-Ads.png │ │ ├── ftp │ │ │ └── FTP.png │ │ ├── gcp │ │ │ ├── AI-Platform.png │ │ │ ├── BigQuery.png │ │ │ ├── Cloud-AutoML.png │ │ │ ├── Cloud-Bigtable.png │ │ │ ├── Cloud-Build.png │ │ │ ├── Cloud-Dataflow.png │ │ │ ├── Cloud-Dataproc.png │ │ │ ├── Cloud-Datastore.png │ │ │ ├── Cloud-Functions.png │ │ │ ├── Cloud-Looker.png │ │ │ ├── Cloud-Memorystore.png │ │ │ ├── Cloud-NLP.png │ │ │ ├── Cloud-PubSub.png │ │ │ ├── Cloud-SQL.png │ │ │ ├── Cloud-Spanner.png │ │ │ ├── Cloud-Speech-to-Text.png │ │ │ ├── Cloud-Storage.png │ │ │ ├── Cloud-Tasks.png │ │ │ ├── Cloud-Text-to-Speech.png │ │ │ ├── Cloud-Translation-API.png │ │ │ ├── Cloud-Video-Intelligence-API.png │ │ │ ├── Cloud-Vision-API.png │ │ │ ├── Compute-Engine.png │ │ │ ├── Google-API-Python-Client.png │ │ │ ├── Google-Ads.png │ │ │ ├── Google-Analytics.png │ │ │ ├── Google-Calendar.png │ │ │ ├── Google-Campaign-Manager.png │ │ │ ├── Google-Cloud-Generic.png │ │ │ ├── Google-Cloud-Life-Sciences.png │ │ │ ├── Google-Cloud-Secret-Manager.png │ │ │ ├── Google-Cloud-Stackdriver.png │ │ │ ├── Google-Cloud.png │ │ │ ├── Google-Data-Catalog.png │ │ │ ├── Google-Data-Fusion.png │ │ │ ├── Google-Data-Proc.png │ │ │ ├── Google-Dataprep.png │ │ │ ├── Google-Deployment-Manager.png │ │ │ ├── Google-Display-And-Video-360.png │ │ │ ├── Google-Drive.png │ │ │ ├── Google-Firestore.png │ │ │ ├── Google-Search-Ads360.png │ │ │ ├── Google-Spreadsheet.png │ │ │ ├── Google.png │ │ │ ├── Key-Management-Service.png │ │ │ ├── Kubernetes-Engine.png │ │ │ └── google-data-loss-prevention.png │ │ ├── hashicorp │ │ │ └── Hashicorp-Vault.png │ │ ├── http │ │ │ └── HTTP.png │ │ ├── imap │ │ │ └── IMAP.png │ │ ├── jdbc │ │ │ └── JDBC.png │ │ ├── jenkins │ │ │ └── Jenkins.png │ │ ├── jira │ │ │ └── Jira.png │ │ ├── kubernetes │ │ │ ├── Kubernetes.png │ │ │ └── Spark-On-Kubernetes.png │ │ ├── mongo │ │ │ └── MongoDB.png │ │ ├── mssql │ │ │ └── Microsoft-SQL-Server.png │ │ ├── mysql │ │ │ └── MySQL.png │ │ ├── odbc │ │ │ └── ODBC.png │ │ ├── openfaas │ │ │ └── OpenFaaS.png │ │ ├── opsgenie │ │ │ └── Opsgenie.png │ │ ├── oracle │ │ │ └── Oracle.png │ │ ├── pagerduty │ │ │ └── PagerDuty.png │ │ ├── papermill │ │ │ └── Papermill.png │ │ ├── plexus │ │ │ └── Plexus.png │ │ ├── postgres │ │ │ └── Postgres.png │ │ ├── presto │ │ │ └── PrestoDB.png │ │ ├── qubole │ │ │ └── Qubole.png │ │ ├── redis │ │ │ └── Redis.png │ │ ├── salesforce │ │ │ └── Salesforce.png │ │ ├── samba │ │ │ └── Samba.png │ │ ├── segment │ │ │ └── Segment.png │ │ ├── sftp │ │ │ └── SFTP.png │ │ ├── singularity │ │ │ └── Singularity.png │ │ ├── slack │ │ │ └── Slack.png │ │ ├── snowflake │ │ │ └── Snowflake.png │ │ ├── sqlite │ │ │ └── SQLite.png │ │ ├── ssh │ │ │ └── SSH.png │ │ ├── tableau │ │ │ └── tableau.png │ │ ├── telegram │ │ │ └── Telegram.png │ │ ├── trino │ │ │ └── trino-og.png │ │ ├── vertica │ │ │ └── Vertica.png │ │ ├── winrm │ │ │ └── WinRM.png │ │ ├── yandex │ │ │ └── Yandex-Cloud.png │ │ └── zendesk │ │ │ └── Zendesk.png │ │ ├── integrations.json │ │ ├── manifest.json │ │ ├── meetups.json │ │ ├── stock-guy.jpg │ │ ├── usecase-logos │ │ ├── adjoe-logo.svg │ │ ├── adobe-logo.svg │ │ ├── adyen-logo.svg │ │ ├── big-fish-games-logo.svg │ │ ├── business-ops.png │ │ ├── dish-logo.svg │ │ ├── docker-logo.png │ │ ├── etl.png │ │ ├── experity-logo.jpg │ │ ├── infrastructure-management.png │ │ ├── mlops.png │ │ ├── onefootball-logo.svg │ │ ├── plarium-krasnodar-logo.svg │ │ ├── rancher-suse.svg │ │ ├── seniorlink-logo.svg │ │ ├── sift_logo.png │ │ └── snapp-logo.svg │ │ └── usecase-video-placeholders │ │ ├── placeholder_business_ops_video.png │ │ ├── placeholder_etl_video.png │ │ ├── placeholder_infra_video.png │ │ └── placeholder_mlops_video.png ├── src │ ├── docs-index.js │ ├── index.js │ └── js │ │ ├── committersList.js │ │ ├── contentDrawer.js │ │ ├── drawer.js │ │ ├── handleActiveVideo.js │ │ ├── headerAnimation.js │ │ ├── integrationList.js │ │ ├── makeTableResponsive.js │ │ ├── meetupsList.js │ │ ├── navbarScroll.js │ │ ├── progressTracking.js │ │ ├── rating.js │ │ ├── searchBlogPosts.js │ │ ├── showMore.js │ │ ├── sortVersions.js │ │ ├── tocTree.js │ │ ├── utils.js │ │ └── versionSelector.js ├── webpack.common.js ├── webpack.dev.js ├── webpack.prod.js └── yarn.lock ├── license-templates ├── LICENSE.rst └── LICENSE.txt ├── site.sh └── sphinx_airflow_theme ├── README.md ├── demo ├── awesome-cat.jpg ├── conf.py ├── docs.sh ├── index.rst └── playground.rst ├── pyproject.toml ├── sphinx_airflow_theme ├── __init__.py ├── breadcrumbs.html ├── footer.html ├── globaltoc.html ├── header.html ├── layout.html ├── searchbox.html ├── searchresults.html ├── static │ └── js │ │ └── globaltoc.js ├── suggest_change_button.html ├── theme.conf └── version-selector.html └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- 1 | # 2 | # Licensed to the Apache Software Foundation (ASF) under one 3 | # or more contributor license agreements. See the NOTICE file 4 | # distributed with this work for additional information 5 | # regarding copyright ownership. The ASF licenses this file 6 | # to you under the Apache License, Version 2.0 (the 7 | # "License"); you may not use this file except in compliance 8 | # with the License. You may obtain a copy of the License at 9 | # 10 | # http://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, 13 | # software distributed under the License is distributed on an 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | # KIND, either express or implied. See the License for the 16 | # specific language governing permissions and limitations 17 | # under the License. 18 | 19 | # The development environment does not need to have any files. 20 | # The volume with source code is always mounted. 21 | 22 | # Ignore everything 23 | ** 24 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, 14 | # software distributed under the License is distributed on an 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | # KIND, either express or implied. See the License for the 17 | # specific language governing permissions and limitations 18 | # under the License. 19 | root = true 20 | 21 | [*] 22 | end_of_line = lf 23 | indent_style = space 24 | insert_final_newline = true 25 | trim_trailing_whitespace = true 26 | charset = utf-8 27 | 28 | [*.py] 29 | indent_size = 4 30 | 31 | [*.sh] 32 | indent_size = 4 33 | 34 | [*.js] 35 | indent_size = 2 36 | 37 | [*.{css,scss}] 38 | indent_size = 2 39 | 40 | [*.{md,rst}] 41 | indent_size = 2 42 | 43 | [*.{yml,yaml}] 44 | indent_size = 2 45 | 46 | [*.{htm,html}] 47 | indent_size = 4 48 | -------------------------------------------------------------------------------- /.github/scripts/images/staging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/.github/scripts/images/staging.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | .idea/ 19 | .DS_Store 20 | dist/ 21 | *.egg-info/ 22 | __pycache__/ 23 | _build/ 24 | sphinx_airflow_theme/sphinx_airflow_theme/static/_gen/ 25 | sphinx_airflow_theme/demo/_doctrees/ 26 | docs-archive/**/output-*.log 27 | *.log 28 | *.iml 29 | .venv/ 30 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | [submodule "landing-pages/site/themes/docsy"] 19 | path = landing-pages/site/themes/docsy 20 | url = https://github.com/google/docsy.git 21 | [submodule ".github/actions/pre-commmit-action"] 22 | path = .github/actions/pre-commmit-action 23 | url = git@github.com:pre-commit/action.git 24 | -------------------------------------------------------------------------------- /.hadolint.yaml: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | --- 18 | ignored: 19 | # DL3008 Pin versions in apt get install. Instead of `apt-get install ` use 20 | # `apt-get install =` 21 | - DL3008 22 | # Dockerfile:57 DL3059 info: Multiple consecutive `RUN` instructions. Consider consolidation. 23 | - DL3059 24 | -------------------------------------------------------------------------------- /landing-pages/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": [ 3 | "@babel/plugin-syntax-object-rest-spread", 4 | "@babel/plugin-proposal-object-rest-spread" 5 | ], 6 | "presets": [ 7 | "@babel/preset-env" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /landing-pages/.eslintignore: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | dist/* 19 | site/themes/* 20 | -------------------------------------------------------------------------------- /landing-pages/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | site/data/webpack.json 4 | resources/ 5 | site/static/_gen/ 6 | -------------------------------------------------------------------------------- /landing-pages/.stylelintignore: -------------------------------------------------------------------------------- 1 | _rst-content.scss 2 | _roadmap.scss 3 | -------------------------------------------------------------------------------- /landing-pages/postcss.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | module.exports = { 21 | plugins: { 22 | "postcss-import": {}, 23 | "postcss-preset-env": { 24 | browsers: "last 2 versions" 25 | }, 26 | autoprefixer: {} 27 | } 28 | }; 29 | -------------------------------------------------------------------------------- /landing-pages/site/.hugo_build.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/.hugo_build.lock -------------------------------------------------------------------------------- /landing-pages/site/archetypes/blog.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | linkTitle: "{{ replace .Name "-" " " | title }}" 4 | author: "Your Name" 5 | github: "Your GitHub ID (optional, remove if not needed)" 6 | linkedin: "Your LinkedIn ID (optional, remove if not needed)" 7 | description: "Description" 8 | tags: [] 9 | date: "{{ now.Format "2006-01-02" }}" 10 | draft: true 11 | --- 12 | -------------------------------------------------------------------------------- /landing-pages/site/archetypes/testimonials.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | linkTitle: "{{ replace .Name "-" " " | title }}" 4 | quote: 5 | text: "Quote text" 6 | author: "Quote's author" 7 | logo: "logo-name-in-static-icons-directory.svg" 8 | blocktype: testimonial 9 | draft: true 10 | --- 11 | 12 | ##### What was the problem? 13 | text 14 | 15 | ##### How did Apache Airflow help to solve this problem? 16 | text 17 | 18 | ##### What are the results? 19 | text 20 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/accordion-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/close-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/github-small.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/github-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/github.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/hamburger-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/intent-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/jira.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/linkedin-small.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/linkedin.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 9 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/play-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/search-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/stackoverflow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/star-icon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/twitter-small.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/twitter-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/twitter.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /landing-pages/site/assets/icons/youtube.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_avatar.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | .avatar { 21 | border-radius: 50%; 22 | width: 80px; 23 | height: 80px; 24 | } 25 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_case-study.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | @import "media"; 20 | 21 | .case-study-page { 22 | max-width: 790px !important; 23 | margin: 60px auto 0; 24 | 25 | @media (max-width: $mobile) { 26 | margin-top: 40px; 27 | } 28 | } 29 | 30 | .case-studies-container { 31 | display: flex; 32 | justify-content: center; 33 | flex-wrap: wrap; 34 | } 35 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_docs.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | @media (min-width: 768px) { 21 | .list-providers { 22 | column-count: 2 23 | } 24 | } 25 | @media (min-width: 1000px) { 26 | .list-providers { 27 | column-count: 3 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_dropdown.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | @import "fonts"; 20 | @import "colors"; 21 | 22 | .dropdown-menu { 23 | font-family: $primary-font; 24 | } 25 | 26 | .dropdown-toggle::after { 27 | color: map-get($colors, greyish-brown); 28 | } 29 | 30 | .sidebar__version-selector { 31 | margin-bottom: 22px; 32 | 33 | a { 34 | @extend .bodytext__medium--brownish-grey; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_fonts.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | $header-font: 'Rubik', sans-serif; 21 | $primary-font: 'Roboto', sans-serif; 22 | $monospace-font: 'Roboto Mono', monospace; 23 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_four-oh-four.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | .four-oh-four { 21 | height: calc(100vh - 123px); 22 | position: relative; 23 | 24 | &__text-container { 25 | position: relative; 26 | top: 50%; 27 | left: 50%; 28 | transform: translate(-50%, -50%); 29 | text-align: center; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_media.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | $mobile: 640px; 21 | $tablet: 1280px; 22 | $fullhd: 1920px; 23 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_pager.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | .pager { 21 | display: flex; 22 | width: 100%; 23 | justify-content: space-between; 24 | margin-top: 60px; 25 | } 26 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_share-social-media.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | .share-section { 21 | &--icons-wrapper { 22 | display: flex; 23 | } 24 | 25 | &--icon { 26 | margin-right: 12px; 27 | cursor: pointer; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_suggest-change.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | .fade-target { 21 | opacity: 1; 22 | visibility: visible; 23 | pointer-events: auto; 24 | transition: opacity 0.5s ease, visibility 0s linear; 25 | } 26 | 27 | .base-layout:has(.wy-nav-side-toc:hover) .fade-target { 28 | opacity: 0; 29 | pointer-events: none; 30 | visibility: hidden; 31 | transition: opacity 0.5s ease, visibility 0s linear; 32 | } 33 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_survey.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | img { 21 | max-width: 100%; 22 | height: auto; 23 | } 24 | 25 | .bottom-image { 26 | margin-bottom: 5vh; 27 | } 28 | 29 | .survey-button-container { 30 | display: flex; 31 | align-items: center; 32 | } 33 | 34 | .survey-button { 35 | margin: auto; 36 | } 37 | -------------------------------------------------------------------------------- /landing-pages/site/assets/scss/_testimonial.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | @import "media"; 20 | 21 | .case-study-page { 22 | max-width: 790px !important; 23 | margin: 60px auto 0; 24 | 25 | @media (max-width: $mobile) { 26 | margin-top: 40px; 27 | } 28 | } 29 | 30 | #case-studies-container { 31 | display: flex; 32 | justify-content: center; 33 | flex-wrap: wrap; 34 | } 35 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/_index.html: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Home" 3 | linkTitle = "Home" 4 | 5 | +++ 6 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/Its-a-breeze-to-develop-apache-airflow.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "It's a \"Breeze\" to develop Apache Airflow" 3 | linkTitle: "It's a \"Breeze\" to develop Apache Airflow" 4 | author: "Jarek Potiuk" 5 | twitter: "higrys" 6 | github: "potiuk" 7 | linkedin: "jarekpotiuk" 8 | description: "A Principal Software Engineer's journey to developer productivity. Learn how Jarek and his team sped up and simplified Airflow development for the community." 9 | tags: ["Development"] 10 | date: 2019-11-22 11 | --- 12 | 13 | ## The story behind the Airflow Breeze tool 14 | Initially, we started contributing to this fantastic open-source project [Apache Airflow] with a team of three which then grew to five. When we kicked it off a year ago, I realized pretty soon where the biggest bottlenecks and areas for improvement in terms of productivity were. Even with the help of our client, who provided us with a “homegrown” development environment it took us literally days to set it up and learn some basics. 15 | 16 | That is how the journey to increased productivity in Apache Airflow began. The result? The Airflow Breeze open-source tool. Jarek Potiuk, an Airflow Committer, will tell you all about it. 17 | 18 | You can learn [how and why it’s a "Breeze" to Develop Apache Airflow](https://higrys.medium.com/its-a-breeze-to-develop-apache-airflow-bf306d3e3505). 19 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Blog" 3 | linkTitle: "Blog" 4 | menu: 5 | main: 6 | weight: 25 7 | --- 8 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-1.10.10/rbac-ui-timezone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-1.10.10/rbac-ui-timezone.gif -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-1.10.10/trigger-dag-conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-1.10.10/trigger-dag-conf.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-1.10.8-1.10.9/airflow-dag-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-1.10.8-1.10.9/airflow-dag-tags.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/DAG_reparse_button_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/DAG_reparse_button_detail.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/DAG_reparsing_button_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/DAG_reparsing_button_list.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/airflow_dark_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/airflow_dark_mode.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/airflow_light_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/airflow_light_mode.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/dag_dependencies_legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/dag_dependencies_legend.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/dataset_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/dataset_details.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/dataset_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/dataset_info.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/dataset_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/dataset_list.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/dataset_toggle_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/dataset_toggle_off.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/dataset_toggle_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/dataset_toggle_on.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/dependency_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/dependency_graph.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/render_dataset_conditions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/render_dataset_conditions.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/task_instance_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/task_instance_history.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.10.0/task_instance_history_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.10.0/task_instance_history_log.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.3.0/grid-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.3.0/grid-view.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.6.0/filter_downstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.6.0/filter_downstream.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.6.0/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.6.0/graph.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.6.0/trigger_dag_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.6.0/trigger_dag_form.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.6.0/trigger_logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.6.0/trigger_logging.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.7.0/cluster_activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.7.0/cluster_activity.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.7.0/graph_in_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.7.0/graph_in_grid.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.8.0/multiselect-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.8.0/multiselect-states.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.8.0/task_status_visibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.8.0/task_status_visibility.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.9.0/create-manual-dataset-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.9.0/create-manual-dataset-event.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.9.0/custom-log-grouping-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.9.0/custom-log-grouping-expanded.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.9.0/custom-log-grouping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.9.0/custom-log-grouping.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.9.0/dataset-view-filtering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.9.0/dataset-view-filtering.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.9.0/datasets-in-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.9.0/datasets-in-graph.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.9.0/display-names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.9.0/display-names.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.9.0/dynamic-task-mapping-custom-names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.9.0/dynamic-task-mapping-custom-names.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.9.0/pre-post-logs-grouped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.9.0/pre-post-logs-grouped.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.9.0/run-duration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.9.0/run-duration.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-2.9.0/task-duration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-2.9.0/task-duration.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2020/What_best_describes_your_current_occupation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2020/What_best_describes_your_current_occupation.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2020/What_executor_type_do_you_use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2020/What_executor_type_do_you_use.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2020/What_external_services_do_you_use_in_your_Airflow_DAGs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2020/What_external_services_do_you_use_in_your_Airflow_DAGs.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2020/Where_are_you_based.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2020/Where_are_you_based.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image1.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image10.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image11.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image12.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image13.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image14.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image15.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image16.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image17.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image18.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image2.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image3.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image4.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image5.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image6.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image7.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image8.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2022/images/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2022/images/image9.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2023/images/Airflow-Survey-2023-Results--Airflow-Usage-Page-1-Revised.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2023/images/Airflow-Survey-2023-Results--Airflow-Usage-Page-1-Revised.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2023/images/Airflow-Survey-2023-Results-Airflow-Usage-Page-3-Revised-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2023/images/Airflow-Survey-2023-Results-Airflow-Usage-Page-3-Revised-Landscape@2x.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2023/images/Astronomer-Airflow-Survey-2023-Results-Airflow-Usage-Page-2-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2023/images/Astronomer-Airflow-Survey-2023-Results-Airflow-Usage-Page-2-Landscape.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2023/images/Astronomer-Airflow-Survey-2023-Results-Future-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2023/images/Astronomer-Airflow-Survey-2023-Results-Future-Landscape@2x.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2023/images/Astronomer_Community_and_Contribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2023/images/Astronomer_Community_and_Contribution.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2023/images/Astronomer_Demographics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2023/images/Astronomer_Demographics.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2023/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Airflow Survey 2023" 3 | tags: ["community", "survey", "users"] 4 | date: "2023-09-21" 5 | author: "Michael Robinson" 6 | description: "Airflow 2 has seen rapid adoption, accompanied by continuous community growth. This annual survey helps us understand how people use Airflow and where we can best focus our efforts as we advance." 7 | github: "merobi-hub" 8 | --- 9 | 10 | ![Demographics](images/Astronomer_Demographics.png "airflow_usage") 11 | ![Community and Contribution](images/Astronomer_Community_and_Contribution.png "community_and_contributions") 12 | ![Airflow Usage Page 1](images/Airflow-Survey-2023-Results--Airflow-Usage-Page-1-Revised.png ) 13 | ![Airflow Usage Page 2](images/Astronomer-Airflow-Survey-2023-Results-Airflow-Usage-Page-2-Landscape.png) 14 | ![Airflow Usage Page 3](images/Airflow-Survey-2023-Results-Airflow-Usage-Page-3-Revised-Landscape@2x.png) 15 | ![Future](images/Astronomer-Airflow-Survey-2023-Results-Future-Landscape@2x.png) 16 | 17 | [View Raw Data](https://docs.google.com/forms/d/1wYm6c5Gn379zkg7zD7vcWB-1fCjnOocT0oZm-tjft_Q/viewanalytics) 18 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2024/images/Airflow-Survey-2024-Results-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey-2024/images/Airflow-Survey-2024-Results-v2.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey-2024/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Airflow Survey 2024" 3 | linkTitle: "Airflow Survey 2024" 4 | tags: ["community", "survey", "users"] 5 | date: "2025-02-27" 6 | author: "Ankit Chaurasia" 7 | github: "sunank200" 8 | linkedin: "sunank200" 9 | description: "With more than 5,250 responses from 116 countries, this is the largest data engineering survey to date. Conducted annually, it offers valuable insights into Airflow usage and helps guide our future efforts." 10 | menu: 11 | main: 12 | weight: 31 13 | --- 14 | 15 | ![Airflow Survey 2024](images/Airflow-Survey-2024-Results-v2.png "airflow_survey_2024") 16 | 17 | [View Raw Data](https://astronomer.typeform.com/report/SF2VGNTc/fRSeRcKKJ3kgYXVl) 18 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey/plot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey/plot1.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey/plot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey/plot2.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-survey/plot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-survey/plot3.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-three-point-oh-is-here/airflow-3.0-ui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-three-point-oh-is-here/airflow-3.0-ui.gif -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-three-point-oh-is-here/backfill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-three-point-oh-is-here/backfill.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-three-point-oh-is-here/versioning_ui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-three-point-oh-is-here/versioning_ui.gif -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow-two-point-oh-is-here/airflow-2.0-ui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/airflow-two-point-oh-is-here/airflow-2.0-ui.gif -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/airflow_summit_2021.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Airflow Summit 2021" 3 | linkTitle: "Airflow Summit 2021" 4 | author: "Tomasz Urbaszek" 5 | description: "We are thrilled about Airflow Summit 2021!" 6 | tags: ["Community", "Airflow Summit"] 7 | date: "2021-03-21" 8 | --- 9 | 10 | ## Airflow Summit 2021 is here! 11 | 12 | The summit will be held online, July 8-16, 2021. Join us from all over the world to find 13 | out how Airflow is being used by leading companies, what is its roadmap and how you can 14 | participate in its development. 15 | 16 | ## Useful information: 17 | - The official website: https://airflowsummit.org 18 | - Call for proposals is open until **12 April 2021**. To submit your talk go to https://sessionize.com/airflow-summit-2021/ 19 | - In case of any questions reach out to us via info@airflowsummit.org 20 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/apache-airflow-for-newcomers/Simple_dag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/apache-airflow-for-newcomers/Simple_dag.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/apache-airflow-for-newcomers/airflow-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/apache-airflow-for-newcomers/airflow-ui.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/apache-airflow-for-newcomers/semicomplex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/apache-airflow-for-newcomers/semicomplex.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/introducing_setup_teardown/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/introducing_setup_teardown/simple.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/blog/introducing_setup_teardown/task-group-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/content/en/blog/introducing_setup_teardown/task-group-arrow.png -------------------------------------------------------------------------------- /landing-pages/site/content/en/meetups/_index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Meetups" 3 | linkTitle: "Meetups" 4 | menu: 5 | main: 6 | weight: 5 7 | --- 8 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/privacy-notice/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Privacy notice" 3 | linkTitle: "Privacy notice" 4 | --- 5 | 6 | ## Privacy Notice 7 | 8 | The website follows the [Privacy Policy of the Apache Software Foundation](https://privacy.apache.org/policies/privacy-policy-public.html). 9 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/search.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Search Results 3 | layout: search 4 | 5 | --- 6 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/survey/_index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Redirecting... 8 | 9 | 10 |

If you are not redirected automatically, please click 11 | here. 12 |

13 | 14 | 15 | -------------------------------------------------------------------------------- /landing-pages/site/content/en/use-cases/_index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Use Cases" 3 | linkTitle: "Use Cases" 4 | menu: 5 | main: 6 | weight: 20 7 | --- 8 | -------------------------------------------------------------------------------- /landing-pages/site/data/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/data/.keep -------------------------------------------------------------------------------- /landing-pages/site/data/integrations.json: -------------------------------------------------------------------------------- 1 | ../static/integrations.json -------------------------------------------------------------------------------- /landing-pages/site/data/videos.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "video", 4 | "date": "2023-10-28", 5 | "title": "Things to consider when building an Airflow service", 6 | "videoID": "Q7H0JYVnI9I" 7 | }, 8 | { 9 | "name": "video", 10 | "date": "2023-10-29", 11 | "title": "Guided tour to DAG authoring", 12 | "videoID": "j3DIJHXTZQ4" 13 | }, 14 | { 15 | "name": "video", 16 | "date": "2023-10-28", 17 | "title": "Mastering dependencies: the Airflow way", 18 | "videoID": "zPjIQjjjyHI" 19 | }, 20 | { 21 | "name": "video", 22 | "date": "2023-10-22", 23 | "title": "Simplifying the creation of data science pipelines with Airflow", 24 | "videoID": "xm1sKYpyDnw" 25 | }, 26 | { 27 | "name": "video", 28 | "date": "2023-10-22", 29 | "title": "OpenLineage in Airflow: a comprehensive guide", 30 | "videoID": "SZBVgREqets" 31 | } 32 | ] 33 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/404.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ define "main" }} 21 |
22 |
23 |

404

24 |

Go Home

25 |
26 |
27 | {{ end }} 28 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/blog/single.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ define "main" }} 21 |
22 | {{ .Render "content" }} 23 | {{ partial "share-social-media.html" . }} 24 |
25 | {{ partial "pager.html" . }} 26 |
27 |
28 | 29 |
30 | {{ partial "blog-pager" . }} 31 |
32 | {{ end }} 33 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/docs/list.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ define "main" }} 21 |
22 | {{ .Content }} 23 |
24 | {{ end }} 25 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/docs/single.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ define "main" }} 21 |
22 | {{ .Content }} 23 |
24 | {{ end }} 25 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/boxes/integration.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 |
21 |
22 | {{ .name }} 23 |
24 |
25 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/buttons/button-filled.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | 21 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/buttons/button-hollow.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | 21 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/buttons/button-with-icon.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ $svg_path := .svg_path | default "icons/github.svg" }} 21 | 25 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/feature.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 |
21 |
22 | {{ with resources.Get .logo_path }} 23 | {{ .Content | safeHTML }} 24 | {{ end }} 25 |
26 |
27 |
{{ .header }}
28 |

{{ .text }}

29 |
30 |
31 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/pager.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | 28 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/quote.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ $title := .title }} 21 |
22 |

{{ .quote.text }}

23 |

{{ .quote.author }}

24 | {{ with .logo }} 25 | 26 | {{ end }} 27 |
28 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/rating.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 |

Was this entry helpful?

21 |
22 | {{ range seq 5 1 }} 23 |
24 | {{ with resources.Get "icons/star-icon.svg" }}{{ .Content | safeHTML }}{{ end }} 25 |
26 | {{ end }} 27 |
28 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/scripts.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ $jsBase := resources.Get "js/base.js" }} 5 | {{ $jsAnchor := resources.Get "js/anchor.js" }} 6 | {{ $jsSearch := resources.Get "js/search.js" | resources.ExecuteAsTemplate "js/search.js" .Site.Home }} 7 | {{ $js := (slice $jsBase $jsAnchor $jsSearch) | resources.Concat "js/main.js" }} 8 | {{ if .Site.IsServer }} 9 | 10 | {{ else }} 11 | {{ $js := $js | minify | fingerprint }} 12 | 13 | {{ end }} 14 | {{ partial "hooks/body-end.html" . }} 15 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/suggest-change.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 |
21 | {{ $url := printf "https://github.com/apache/airflow-site/edit/main/landing-pages/site/content/%s/%s" $.Site.Language.Lang .Path }} 22 | 23 | {{ partial "buttons/button-with-icon" (dict "text" "Suggest a change on this page" "class" "button-fixed") }} 24 | 25 |
26 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/text-with-icon.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 |
21 | {{ with resources.Get .logo_path }} 22 | {{ .Content | safeHTML }} 23 | {{ end }} 24 |
{{ .header | markdownify }}
25 |

{{ .text | markdownify }}

26 |
27 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/usecasedescription.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ $title := .title }} 21 |
22 |

{{ .usecasedescription.text }}

23 |

{{ .usecasedescription.author }}

24 | {{ with .logo }} 25 | 26 | {{ end }} 27 |
28 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/partials/youtube.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 |
21 | 23 |
24 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/privacy-notice/list.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ define "main" }} 21 |
22 | {{ .Content }} 23 |
24 | {{ end }} 25 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/privacy-notice/single.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ define "main" }} 21 |
22 | {{ .Content }} 23 |
24 | {{ end }} 25 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/roadmap/list.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ define "main" }} 21 |
22 |

{{ .Title }}

23 | {{ .Content }} 24 |
25 | {{ end }} 26 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/roadmap/single.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ define "main" }} 21 |
22 |

{{ .Title }}

23 | {{ .Content }} 24 |
25 | {{ end }} 26 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/shortcodes/rawhtml.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{.Inner}} 21 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/use-cases/content.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 |
21 | {{ if .Params.quote }} 22 | {{ partial "quote" .Params }} 23 | {{ else if .Params.usecasedescription }} 24 | {{ partial "usecasedescription" .Params }} 25 | {{ end }} 26 | {{ with .Params.description }} 27 |
{{ . | markdownify }}
{{ end }} 28 |
29 | {{ .Content }} 30 |
31 |
32 | -------------------------------------------------------------------------------- /landing-pages/site/layouts/use-cases/single.html: -------------------------------------------------------------------------------- 1 | {{/* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */}} 19 | 20 | {{ define "main" }} 21 |
22 | {{ .Render "content" }} 23 | {{ partial "pager.html" . }} 24 |
25 | {{ end }} 26 | -------------------------------------------------------------------------------- /landing-pages/site/static/.keep: -------------------------------------------------------------------------------- 1 | Licensed to the Apache Software Foundation (ASF) under one 2 | or more contributor license agreements. See the NOTICE file 3 | distributed with this work for additional information 4 | regarding copyright ownership. The ASF licenses this file 5 | to you under the Apache License, Version 2.0 (the 6 | "License"); you may not use this file except in compliance 7 | with the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, 12 | software distributed under the License is distributed on an 13 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | KIND, either express or implied. See the License for the 15 | specific language governing permissions and limitations 16 | under the License. 17 | -------------------------------------------------------------------------------- /landing-pages/site/static/.well-known/atproto-did: -------------------------------------------------------------------------------- 1 | did:plc:ymxtfxhgujqlbqzamfby4lru 2 | -------------------------------------------------------------------------------- /landing-pages/site/static/_gen/indexes/.keep: -------------------------------------------------------------------------------- 1 | Licensed to the Apache Software Foundation (ASF) under one 2 | or more contributor license agreements. See the NOTICE file 3 | distributed with this work for additional information 4 | regarding copyright ownership. The ASF licenses this file 5 | to you under the Apache License, Version 2.0 (the 6 | "License"); you may not use this file except in compliance 7 | with the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, 12 | software distributed under the License is distributed on an 13 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | KIND, either express or implied. See the License for the 15 | specific language governing permissions and limitations 16 | under the License. 17 | -------------------------------------------------------------------------------- /landing-pages/site/static/artifacthub-repo.yml: -------------------------------------------------------------------------------- 1 | # Licensed to the Apache Software Foundation (ASF) under one 2 | # or more contributor license agreements. See the NOTICE file 3 | # distributed with this work for additional information 4 | # regarding copyright ownership. The ASF licenses this file 5 | # to you under the Apache License, Version 2.0 (the 6 | # "License"); you may not use this file except in compliance 7 | # with the License. You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, 12 | # software distributed under the License is distributed on an 13 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | # KIND, either express or implied. See the License for the 15 | # specific language governing permissions and limitations 16 | # under the License. 17 | 18 | # Artifact Hub repository metadata file 19 | repositoryID: 934024b6-f891-4fc8-88c0-c05520ada400 20 | owners: 21 | - name: Apache Airflow PMC Members 22 | email: dev@airflow.apache.org 23 | -------------------------------------------------------------------------------- /landing-pages/site/static/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | #ffffff 3 | -------------------------------------------------------------------------------- /landing-pages/site/static/data/survey-responses/airflow-user-survey-responses-2020.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/data/survey-responses/airflow-user-survey-responses-2020.csv.zip -------------------------------------------------------------------------------- /landing-pages/site/static/data/survey-responses/airflow-user-survey-responses-2022.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/data/survey-responses/airflow-user-survey-responses-2022.csv.zip -------------------------------------------------------------------------------- /landing-pages/site/static/external/fonts/OpenSans-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/fonts/OpenSans-italic.woff2 -------------------------------------------------------------------------------- /landing-pages/site/static/external/fonts/OpenSans-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/fonts/OpenSans-normal.woff2 -------------------------------------------------------------------------------- /landing-pages/site/static/external/fonts/Roboto-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/fonts/Roboto-italic.woff2 -------------------------------------------------------------------------------- /landing-pages/site/static/external/fonts/Roboto-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/fonts/Roboto-normal.woff2 -------------------------------------------------------------------------------- /landing-pages/site/static/external/fonts/RobotoMono-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/fonts/RobotoMono-normal.woff2 -------------------------------------------------------------------------------- /landing-pages/site/static/external/fonts/Rubik-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/fonts/Rubik-normal.woff2 -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/BasPH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/BasPH.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/KevinYang21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/KevinYang21.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/Lee-W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/Lee-W.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/XD-DENG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/XD-DENG.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/aijamalnk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/aijamalnk.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/alexvanboxel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/alexvanboxel.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/amoghrajesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/amoghrajesh.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/aneesh-joseph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/aneesh-joseph.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/aoen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/aoen.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/artwr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/artwr.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/ashb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/ashb.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/bbovenzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/bbovenzi.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/bolkedebruin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/bolkedebruin.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/bugraoz93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/bugraoz93.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/criccomini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/criccomini.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/dimberman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/dimberman.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/dirrao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/dirrao.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/dstandish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/dstandish.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/eladkal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/eladkal.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/ephraimbuddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/ephraimbuddy.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/feluelle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/feluelle.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/feng-tao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/feng-tao.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/ferruzzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/ferruzzi.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/fokko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/fokko.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/gopidesupavan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/gopidesupavan.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/hiteshs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/hiteshs.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/houqp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/houqp.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/hussein-awala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/hussein-awala.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/jason810496.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/jason810496.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/jedcunningham.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/jedcunningham.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/jgao54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/jgao54.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/jghoman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/jghoman.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/jhtimmins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/jhtimmins.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/jmcarp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/jmcarp.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/josh-fell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/josh-fell.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/jscheffl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/jscheffl.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/kaxil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/kaxil.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/leahecole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/leahecole.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/malthe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/malthe.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/mik-laj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/mik-laj.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/milton0825.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/milton0825.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/mistercrunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/mistercrunch.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/mobuchowski.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/mobuchowski.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/msumit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/msumit.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/o-nikolas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/o-nikolas.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/pankajastro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/pankajastro.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/pankajkoti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/pankajkoti.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/patrickleotardif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/patrickleotardif.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/phanikumv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/phanikumv.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/pierrejeambrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/pierrejeambrun.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/pingzh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/pingzh.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/potiuk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/potiuk.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/r39132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/r39132.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/rawwar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/rawwar.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/rnhttr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/rnhttr.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/romsharon98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/romsharon98.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/ryanahamilton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/ryanahamilton.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/ryw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/ryw.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/saguziel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/saguziel.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/sekikn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/sekikn.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/shahar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/shahar1.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/shubhamraj-git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/shubhamraj-git.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/taragolis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/taragolis.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/tirkarthi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/tirkarthi.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/turbaszek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/turbaszek.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/uranusjr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/uranusjr.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/utkarsharma2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/utkarsharma2.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/vatsrahul1001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/vatsrahul1001.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/vikramkoka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/vikramkoka.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/vincbeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/vincbeck.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/xinbinhuang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/xinbinhuang.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/yuqian90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/yuqian90.png -------------------------------------------------------------------------------- /landing-pages/site/static/external/profiles/zhongjiajie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/external/profiles/zhongjiajie.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicon.ico -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/android-icon-144x144.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/android-icon-192x192.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/android-icon-36x36.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/android-icon-48x48.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/android-icon-72x72.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/android-icon-96x96.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon-114x114.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon-120x120.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon-144x144.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon-152x152.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon-180x180.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon-57x57.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon-60x60.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon-72x72.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon-76x76.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/apple-icon.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/ms-icon-144x144.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/ms-icon-150x150.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/ms-icon-310x310.png -------------------------------------------------------------------------------- /landing-pages/site/static/favicons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/favicons/ms-icon-70x70.png -------------------------------------------------------------------------------- /landing-pages/site/static/images/airflow_dark_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/images/airflow_dark_bg.png -------------------------------------------------------------------------------- /landing-pages/site/static/images/anchor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /landing-pages/site/static/images/commiter-placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /landing-pages/site/static/images/feature-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/images/feature-image.png -------------------------------------------------------------------------------- /landing-pages/site/static/images/tick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/airbyte/Airbyte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/airbyte/Airbyte.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/alibaba/cloud/alibabacloud-oss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/alibaba/cloud/alibabacloud-oss.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/Livy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/Livy.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/cassandra-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/cassandra-3.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/drill.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/druid-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/druid-1.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/hadoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/hadoop.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/hive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/hive.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/kylin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/kylin.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/pig.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/pinot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/pinot.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/spark.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/apache/sqoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/apache/sqoop.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/AWS-Batch_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/AWS-Batch_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/AWS-Cloud-alt_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/AWS-Cloud-alt_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/AWS-CloudFormation_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/AWS-CloudFormation_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/AWS-DataSync_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/AWS-DataSync_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/AWS-Database-Migration-Service_64@5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/AWS-Database-Migration-Service_64@5x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/AWS-Glue_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/AWS-Glue_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/AWS-Lambda_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/AWS-Lambda_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/AWS-STS_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/AWS-STS_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/AWS-Secrets-Manager_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/AWS-Secrets-Manager_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/AWS-Step-Functions_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/AWS-Step-Functions_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-Athena_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-Athena_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-CloudWatch_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-CloudWatch_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-DynamoDB_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-DynamoDB_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-EC2_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-EC2_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-EMR_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-EMR_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-ElastiCache_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-ElastiCache_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-Elastic-Container-Service_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-Elastic-Container-Service_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-Elastic-Kubernetes-Service_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-Elastic-Kubernetes-Service_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-Kinesis-Data-Firehose_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-Kinesis-Data-Firehose_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-Quicksight_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-Quicksight_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-RDS_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-RDS_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-Redshift_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-Redshift_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-S3-Glacier_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-S3-Glacier_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-SageMaker_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-SageMaker_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-Simple-Email-Service-SES_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-Simple-Email-Service-SES_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-Simple-Notification-Service-SNS_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-Simple-Notification-Service-SNS_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-Simple-Queue-Service-SQS_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-Simple-Queue-Service-SQS_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/aws/Amazon-Simple-Storage-Service-S3_light-bg@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/aws/Amazon-Simple-Storage-Service-S3_light-bg@4x.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/azure/Azure Files.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/azure/Blob Storage.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/azure/Container Instances.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/azure/Microsoft-Azure-Batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/azure/Microsoft-Azure-Batch.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/azure/Microsoft-Azure-Data-Explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/azure/Microsoft-Azure-Data-Explorer.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/azure/Microsoft-Azure-Fileshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/azure/Microsoft-Azure-Fileshare.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/azure/Microsoft-Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/azure/Microsoft-Azure.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/celery/Celery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/celery/Celery.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/cloudant/Cloudant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/cloudant/Cloudant.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/databricks/Databricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/databricks/Databricks.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/datadog/datadog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/datadog/datadog.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/dbt/dbt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/dbt/dbt.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/dingding/Dingding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/dingding/Dingding.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/discord/Discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/discord/Discord.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/docker/Docker-Swarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/docker/Docker-Swarm.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/docker/Docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/docker/Docker.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/elasticsearch/Elasticsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/elasticsearch/Elasticsearch.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/exasol/Exasol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/exasol/Exasol.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/facebook/Facebook-Ads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/facebook/Facebook-Ads.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/ftp/FTP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/ftp/FTP.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/AI-Platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/AI-Platform.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/BigQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/BigQuery.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-AutoML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-AutoML.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Bigtable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Bigtable.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Build.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Dataflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Dataflow.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Dataproc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Dataproc.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Datastore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Datastore.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Functions.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Looker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Looker.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Memorystore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Memorystore.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-NLP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-NLP.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-PubSub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-PubSub.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-SQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-SQL.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Spanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Spanner.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Speech-to-Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Speech-to-Text.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Storage.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Tasks.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Text-to-Speech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Text-to-Speech.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Translation-API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Translation-API.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Video-Intelligence-API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Video-Intelligence-API.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Cloud-Vision-API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Cloud-Vision-API.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Compute-Engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Compute-Engine.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-API-Python-Client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-API-Python-Client.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Ads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Ads.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Analytics.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Calendar.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Campaign-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Campaign-Manager.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Cloud-Generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Cloud-Generic.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Cloud-Life-Sciences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Cloud-Life-Sciences.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Cloud-Secret-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Cloud-Secret-Manager.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Cloud-Stackdriver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Cloud-Stackdriver.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Cloud.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Data-Catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Data-Catalog.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Data-Fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Data-Fusion.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Data-Proc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Data-Proc.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Dataprep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Dataprep.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Deployment-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Deployment-Manager.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Display-And-Video-360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Display-And-Video-360.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Drive.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Firestore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Firestore.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Search-Ads360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Search-Ads360.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google-Spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google-Spreadsheet.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Google.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Key-Management-Service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Key-Management-Service.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/Kubernetes-Engine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/Kubernetes-Engine.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/gcp/google-data-loss-prevention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/gcp/google-data-loss-prevention.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/hashicorp/Hashicorp-Vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/hashicorp/Hashicorp-Vault.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/http/HTTP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/http/HTTP.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/imap/IMAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/imap/IMAP.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/jdbc/JDBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/jdbc/JDBC.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/jenkins/Jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/jenkins/Jenkins.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/jira/Jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/jira/Jira.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/kubernetes/Kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/kubernetes/Kubernetes.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/kubernetes/Spark-On-Kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/kubernetes/Spark-On-Kubernetes.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/mongo/MongoDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/mongo/MongoDB.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/mssql/Microsoft-SQL-Server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/mssql/Microsoft-SQL-Server.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/mysql/MySQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/mysql/MySQL.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/odbc/ODBC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/odbc/ODBC.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/openfaas/OpenFaaS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/openfaas/OpenFaaS.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/opsgenie/Opsgenie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/opsgenie/Opsgenie.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/oracle/Oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/oracle/Oracle.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/pagerduty/PagerDuty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/pagerduty/PagerDuty.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/papermill/Papermill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/papermill/Papermill.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/plexus/Plexus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/plexus/Plexus.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/postgres/Postgres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/postgres/Postgres.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/presto/PrestoDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/presto/PrestoDB.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/qubole/Qubole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/qubole/Qubole.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/redis/Redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/redis/Redis.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/salesforce/Salesforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/salesforce/Salesforce.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/samba/Samba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/samba/Samba.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/segment/Segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/segment/Segment.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/sftp/SFTP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/sftp/SFTP.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/singularity/Singularity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/singularity/Singularity.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/slack/Slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/slack/Slack.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/snowflake/Snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/snowflake/Snowflake.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/sqlite/SQLite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/sqlite/SQLite.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/ssh/SSH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/ssh/SSH.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/tableau/tableau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/tableau/tableau.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/telegram/Telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/telegram/Telegram.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/trino/trino-og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/trino/trino-og.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/vertica/Vertica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/vertica/Vertica.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/winrm/WinRM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/winrm/WinRM.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/yandex/Yandex-Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/yandex/Yandex-Cloud.png -------------------------------------------------------------------------------- /landing-pages/site/static/integration-logos/zendesk/Zendesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/integration-logos/zendesk/Zendesk.png -------------------------------------------------------------------------------- /landing-pages/site/static/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "App", 3 | "icons": [ 4 | { 5 | "density": "0.75", 6 | "sizes": "36x36", 7 | "src": "/favicons/android-icon-36x36.png", 8 | "type": "image/png" 9 | }, 10 | { 11 | "density": "1.0", 12 | "sizes": "48x48", 13 | "src": "/favicons/android-icon-48x48.png", 14 | "type": "image/png" 15 | }, 16 | { 17 | "density": "1.5", 18 | "sizes": "72x72", 19 | "src": "/favicons/android-icon-72x72.png", 20 | "type": "image/png" 21 | }, 22 | { 23 | "density": "2.0", 24 | "sizes": "96x96", 25 | "src": "/favicons/android-icon-96x96.png", 26 | "type": "image/png" 27 | }, 28 | { 29 | "density": "3.0", 30 | "sizes": "144x144", 31 | "src": "/favicons/android-icon-144x144.png", 32 | "type": "image/png" 33 | }, 34 | { 35 | "density": "4.0", 36 | "sizes": "192x192", 37 | "src": "/favicons/android-icon-192x192.png", 38 | "type": "image/png" 39 | } 40 | ] 41 | } 42 | -------------------------------------------------------------------------------- /landing-pages/site/static/stock-guy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/stock-guy.jpg -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-logos/business-ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-logos/business-ops.png -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-logos/docker-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-logos/docker-logo.png -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-logos/etl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-logos/etl.png -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-logos/experity-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-logos/experity-logo.jpg -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-logos/infrastructure-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-logos/infrastructure-management.png -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-logos/mlops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-logos/mlops.png -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-logos/sift_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-logos/sift_logo.png -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-video-placeholders/placeholder_business_ops_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-video-placeholders/placeholder_business_ops_video.png -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-video-placeholders/placeholder_etl_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-video-placeholders/placeholder_etl_video.png -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-video-placeholders/placeholder_infra_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-video-placeholders/placeholder_infra_video.png -------------------------------------------------------------------------------- /landing-pages/site/static/usecase-video-placeholders/placeholder_mlops_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/landing-pages/site/static/usecase-video-placeholders/placeholder_mlops_video.png -------------------------------------------------------------------------------- /landing-pages/src/docs-index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | import "./js/navbarScroll"; 21 | import "./js/drawer"; 22 | import "./js/contentDrawer"; 23 | import "./js/progressTracking"; 24 | import "./js/rating"; 25 | import "./js/makeTableResponsive"; 26 | import "./js/tocTree"; 27 | import "./js/versionSelector"; 28 | -------------------------------------------------------------------------------- /landing-pages/src/js/committersList.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | export const shuffleNodeChildren = (containerID) => { 21 | const container = document.querySelector(containerID); 22 | 23 | if (!container) { 24 | return; 25 | } 26 | 27 | const tmp = container.cloneNode(true); 28 | 29 | for (let i = tmp.children.length + 1; i--;) { 30 | tmp.appendChild(tmp.children[Math.random() * i | 0]); 31 | } 32 | 33 | container.parentNode.replaceChild(tmp, container); 34 | }; 35 | -------------------------------------------------------------------------------- /landing-pages/src/js/navbarScroll.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | window.addEventListener("scroll", () => { 21 | if (window.scrollY > 0) { 22 | window.document.querySelector(".js-navbar-scroll").classList.add("navbar--box-shadow"); 23 | } 24 | }); 25 | -------------------------------------------------------------------------------- /landing-pages/src/js/tocTree.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | Array.from(document.querySelectorAll(".toctree ul")).forEach((listElement) => { 21 | const siblingsLinks = Array.from(listElement.parentNode.children).filter((d) => d.tagName === "A"); 22 | siblingsLinks.forEach((linkElement) => { 23 | const expandElement = document.createElement("span"); 24 | expandElement.classList.add("toctree-expand"); 25 | linkElement.insertBefore(expandElement, linkElement.firstChild); 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /landing-pages/src/js/utils.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | export function documentReady(fn) { 21 | if (document.readyState !== "loading") { 22 | fn(); 23 | } else { 24 | document.addEventListener("DOMContentLoaded", fn); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /license-templates/LICENSE.rst: -------------------------------------------------------------------------------- 1 | .. Licensed to the Apache Software Foundation (ASF) under one 2 | or more contributor license agreements. See the NOTICE file 3 | distributed with this work for additional information 4 | regarding copyright ownership. The ASF licenses this file 5 | to you under the Apache License, Version 2.0 (the 6 | "License"); you may not use this file except in compliance 7 | with the License. You may obtain a copy of the License at 8 | 9 | .. http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | .. Unless required by applicable law or agreed to in writing, 12 | software distributed under the License is distributed on an 13 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | KIND, either express or implied. See the License for the 15 | specific language governing permissions and limitations 16 | under the License. 17 | -------------------------------------------------------------------------------- /license-templates/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Licensed to the Apache Software Foundation (ASF) under one 2 | or more contributor license agreements. See the NOTICE file 3 | distributed with this work for additional information 4 | regarding copyright ownership. The ASF licenses this file 5 | to you under the Apache License, Version 2.0 (the 6 | "License"); you may not use this file except in compliance 7 | with the License. You may obtain a copy of the License at 8 | 9 | http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | Unless required by applicable law or agreed to in writing, 12 | software distributed under the License is distributed on an 13 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | KIND, either express or implied. See the License for the 15 | specific language governing permissions and limitations 16 | under the License. 17 | -------------------------------------------------------------------------------- /sphinx_airflow_theme/demo/awesome-cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/airflow-site/f138f30f054343931cbdd91df58943cc440f699c/sphinx_airflow_theme/demo/awesome-cat.jpg -------------------------------------------------------------------------------- /sphinx_airflow_theme/demo/index.rst: -------------------------------------------------------------------------------- 1 | .. Licensed to the Apache Software Foundation (ASF) under one 2 | or more contributor license agreements. See the NOTICE file 3 | distributed with this work for additional information 4 | regarding copyright ownership. The ASF licenses this file 5 | to you under the Apache License, Version 2.0 (the 6 | "License"); you may not use this file except in compliance 7 | with the License. You may obtain a copy of the License at 8 | 9 | .. http://www.apache.org/licenses/LICENSE-2.0 10 | 11 | .. Unless required by applicable law or agreed to in writing, 12 | software distributed under the License is distributed on an 13 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | KIND, either express or implied. See the License for the 15 | specific language governing permissions and limitations 16 | under the License. 17 | 18 | Welcome to Theme demo's documentation! 19 | ====================================== 20 | 21 | AAA 22 | 23 | .. toctree:: 24 | :maxdepth: 1 25 | :caption: References 26 | 27 | playground 28 | 29 | AAA 30 | 31 | Indices and tables 32 | ================== 33 | 34 | * :ref:`genindex` 35 | * :ref:`modindex` 36 | * :ref:`search` 37 | -------------------------------------------------------------------------------- /sphinx_airflow_theme/sphinx_airflow_theme/static/js/globaltoc.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Licensed to the Apache Software Foundation (ASF) under one 3 | * or more contributor license agreements. See the NOTICE file 4 | * distributed with this work for additional information 5 | * regarding copyright ownership. The ASF licenses this file 6 | * to you under the Apache License, Version 2.0 (the 7 | * "License"); you may not use this file except in compliance 8 | * with the License. You may obtain a copy of the License at 9 | * 10 | * http://www.apache.org/licenses/LICENSE-2.0 11 | * 12 | * Unless required by applicable law or agreed to in writing, 13 | * software distributed under the License is distributed on an 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | * KIND, either express or implied. See the License for the 16 | * specific language governing permissions and limitations 17 | * under the License. 18 | */ 19 | 20 | // The script adds a 'click' eventListener to the 'span.toctree-expand' element that makes the active submenus collapsible. 21 | // To make the submenus collapsible is sufficient to add/remove the 'current' class to the active 'li.toctree-l1' element. 22 | $("span.toctree-expand").on("click", function() { 23 | $(this).closest("li").toggleClass("current"); 24 | }); 25 | -------------------------------------------------------------------------------- /sphinx_airflow_theme/sphinx_airflow_theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | stylesheet = _gen/css/main.min.css 4 | pygments_style = default 5 | 6 | [options] 7 | canonical_url = 8 | analytics_id = 9 | # Default set by python code, need to list this here to avoid warning from Sphinx 10 | navbar_links = 11 | hide_website_buttons = false 12 | sidebar_collapse = true 13 | sidebar_includehidden = true 14 | --------------------------------------------------------------------------------