gitextract_zp7ng51c/ ├── .devcontainer/ │ ├── README.md │ └── devcontainer.json ├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── airbyte_dbt_airflow_bigquery/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ └── ecommerce/ │ │ │ ├── marts/ │ │ │ │ ├── product_popularity.sql │ │ │ │ ├── purchase_patterns.sql │ │ │ │ ├── schema.yml │ │ │ │ └── user_demographics.sql │ │ │ ├── sources/ │ │ │ │ └── faker_sources.yml │ │ │ └── staging/ │ │ │ ├── schema.yml │ │ │ ├── stg_products.sql │ │ │ ├── stg_purchases.sql │ │ │ └── stg_users.sql │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ ├── .gitkeep │ │ │ ├── raw_customers.csv │ │ │ ├── raw_orders.csv │ │ │ └── raw_payments.csv │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ ├── README.md │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ ├── terraform.tfvars │ │ └── variables.tf │ ├── orchestration/ │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── airflow/ │ │ │ ├── config/ │ │ │ │ └── dbt_config.py │ │ │ ├── dags/ │ │ │ │ └── elt_dag.py │ │ │ └── plugins/ │ │ │ ├── custom_docs_plugin.py │ │ │ ├── dbt_upload_docs.py │ │ │ ├── static/ │ │ │ │ └── .gitkeep │ │ │ └── templates/ │ │ │ └── dbt/ │ │ │ └── .gitkeep │ │ ├── docker-compose.yaml │ │ └── requirements.txt │ └── setup.py ├── airbyte_dbt_airflow_snowflake/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ ├── example/ │ │ │ │ ├── my_first_dbt_model.sql │ │ │ │ ├── my_second_dbt_model.sql │ │ │ │ └── schema.yml │ │ │ └── sources.yml │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── airflow/ │ │ │ ├── dags/ │ │ │ │ └── my_elt_dag.py │ │ │ └── plugins/ │ │ │ ├── static/ │ │ │ │ └── .gitkeep │ │ │ └── templates/ │ │ │ └── dbt/ │ │ │ └── .gitkeep │ │ ├── docker-compose.yaml │ │ └── requirements.txt │ └── setup.py ├── airbyte_dbt_dagster/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ └── example/ │ │ │ ├── my_first_dbt_model.sql │ │ │ ├── my_second_dbt_model.sql │ │ │ └── schema.yml │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── airbyte_dbt_dagster_snowflake/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ ├── example/ │ │ │ │ ├── my_first_dbt_model.sql │ │ │ │ ├── my_second_dbt_model.sql │ │ │ │ └── schema.yml │ │ │ └── sources.yml │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── airbyte_dbt_prefect_bigquery/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ ├── marts/ │ │ │ │ ├── product_popularity.sql │ │ │ │ ├── purchase_patterns.sql │ │ │ │ └── user_demographics.sql │ │ │ ├── sources/ │ │ │ │ └── faker_sources.yml │ │ │ └── staging/ │ │ │ ├── stg_products.sql │ │ │ ├── stg_purchases.sql │ │ │ └── stg_users.sql │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ └── my_elt_flow.py │ └── setup.py ├── airbyte_dbt_prefect_snowflake/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ ├── example/ │ │ │ │ ├── my_first_dbt_model.sql │ │ │ │ ├── my_second_dbt_model.sql │ │ │ │ └── schema.yml │ │ │ └── sources.yml │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ └── my_elt_flow.py │ └── setup.py ├── airbyte_dbt_snowflake_looker/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ ├── example/ │ │ │ │ ├── my_first_dbt_model.sql │ │ │ │ ├── my_second_dbt_model.sql │ │ │ │ └── schema.yml │ │ │ └── sources.yml │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── airbyte_lib_notebooks/ │ ├── AirbyteLib_Basic_Features_Demo.ipynb │ ├── AirbyteLib_CoinAPI_Demo.ipynb │ ├── AirbyteLib_GA4_Demo.ipynb │ ├── AirbyteLib_Github_Incremental_Demo.ipynb │ ├── PyAirbyte_Postgres_Custom_Cache_Demo.ipynb │ ├── PyAirbyte_Shopify_Demo.ipynb │ └── README.md ├── airbyte_s3_pinecone_rag/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── dbt_project.yml │ │ ├── models/ │ │ │ ├── marts/ │ │ │ │ └── purchase_data.sql │ │ │ ├── sources/ │ │ │ │ └── s3.source.yml │ │ │ └── staging/ │ │ │ └── stg_purchases.sql │ │ └── profiles.yml │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── query.py │ ├── quickstart.md │ └── setup.py ├── api_to_warehouse/ │ ├── .gitignore │ ├── Readme.md │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── setup.py ├── customer_segmentation_analytics_shopify/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ ├── customer_activity_analysis.py │ │ │ ├── purchase_pattern_segmentation_analysis.py │ │ │ └── rfm_segmentation_analysis.py │ │ ├── dbt_project.yml │ │ ├── models/ │ │ │ ├── marts/ │ │ │ │ ├── customer_activity.sql │ │ │ │ ├── purchase_pattern_segmentation.sql │ │ │ │ └── rfm_segmentation.sql │ │ │ ├── sources/ │ │ │ │ └── shopify_sources.yml │ │ │ └── staging/ │ │ │ ├── stg_customers.sql │ │ │ └── stg_transactions.sql │ │ └── profiles.yml │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── data_to_pinecone_llm/ │ ├── .gitignore │ ├── .vscode/ │ │ └── quickstart.code-workspace │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ ├── notion.source.yml │ │ │ └── notion_data.sql │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── query.py │ ├── quickstart.md │ ├── secrets/ │ │ ├── .gitignore │ │ └── README.md │ └── setup.py ├── database_snapshot/ │ ├── .gitignore │ ├── README.md │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── connections/ │ │ │ ├── main.tf │ │ │ ├── provider.tf │ │ │ └── variables.tf │ │ ├── destinations/ │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── provider.tf │ │ │ └── variables.tf │ │ ├── main.tf │ │ ├── provider.tf │ │ ├── sources/ │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── provider.tf │ │ │ └── variables.tf │ │ └── variables.tf │ └── setup.py ├── developer_productivity_analytics_github/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── dbt_project.yml │ │ ├── models/ │ │ │ ├── marts/ │ │ │ │ ├── avarage_time_to_merge_pr_analysis.sql │ │ │ │ ├── commits_over_time_per_dev_analysis.sql │ │ │ │ ├── dev_activity_by_day_of_week_analysis.sql │ │ │ │ ├── dev_collaboration_network_analysis.sql │ │ │ │ ├── freq_of_code_contribution_analysis.sql │ │ │ │ ├── no_of_code_reviews_per_dev_analysis.sql │ │ │ │ ├── no_of_commits_per_dev_per_repo_analysis.sql │ │ │ │ ├── no_of_pr_per_dev_analysis.sql │ │ │ │ ├── number_of_pr_open_or_closed.sql │ │ │ │ ├── top_collaborators_by_repo_analysis.sql │ │ │ │ └── track_issues_assigned_by_dev_analysis.sql │ │ │ ├── sources/ │ │ │ │ └── github_source.yml │ │ │ └── staging/ │ │ │ ├── stg_branches.sql │ │ │ ├── stg_collaborators.sql │ │ │ ├── stg_comments.sql │ │ │ ├── stg_commits.sql │ │ │ ├── stg_issues.sql │ │ │ ├── stg_organizations.sql │ │ │ ├── stg_pull_requests.sql │ │ │ ├── stg_repositories.sql │ │ │ ├── stg_review_comments.sql │ │ │ ├── stg_reviews.sql │ │ │ ├── stg_stargazers.sql │ │ │ ├── stg_tags.sql │ │ │ ├── stg_teams.sql │ │ │ └── stg_users.sql │ │ ├── profiles.yml │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── ecommerce_analytics_bigquery/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ ├── marts/ │ │ │ │ ├── product_popularity.sql │ │ │ │ ├── purchase_patterns.sql │ │ │ │ └── user_demographics.sql │ │ │ ├── sources/ │ │ │ │ └── faker_sources.yml │ │ │ └── staging/ │ │ │ ├── stg_products.sql │ │ │ ├── stg_purchases.sql │ │ │ └── stg_users.sql │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── elt_simplified_stack/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── dbt_project.yml │ │ ├── models/ │ │ │ ├── marts/ │ │ │ │ ├── commits-per-repo.sql │ │ │ │ ├── pr-per-dev.sql │ │ │ │ └── pr-per-status.sql │ │ │ ├── sources/ │ │ │ │ └── github_source.yml │ │ │ └── staging/ │ │ │ ├── stg_commits.sql │ │ │ └── stg_pull_requests.sql │ │ ├── profiles.yml │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ └── my_elt_flow.py │ └── setup.py ├── error_analysis_stack_sentry/ │ ├── Readme.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ ├── example/ │ │ │ │ ├── Insight_Table.sql │ │ │ │ └── schema.yml │ │ │ └── sources.yml │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── error_analysis_stack.egg-info/ │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── requires.txt │ │ └── top_level.txt │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── orchestration.egg-info/ │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── github_insight_stack/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ ├── Readme.md │ │ │ ├── sources.yml │ │ │ └── test-models/ │ │ │ ├── code_quality.sql │ │ │ ├── collaboration_patterns.sql │ │ │ └── project_health.sql │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── low_latency_data_availability/ │ ├── .gitignore │ ├── README.md │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── setup.py ├── mongodb_mysql_integration/ │ ├── .gitignore │ ├── README.md │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── setup.py ├── multisource_aggregation/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ ├── example/ │ │ │ │ ├── my_first_dbt_model.sql │ │ │ │ ├── my_second_dbt_model.sql │ │ │ │ └── schema.yml │ │ │ └── sources.yml │ │ ├── profiles.yml │ │ ├── seeds/ │ │ │ └── .gitkeep │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── connections/ │ │ │ ├── main.tf │ │ │ ├── provider.tf │ │ │ └── variables.tf │ │ ├── destination_warehouse/ │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── provider.tf │ │ │ └── variables.tf │ │ ├── main.tf │ │ ├── provider.tf │ │ ├── source_databases/ │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ ├── provider.tf │ │ │ └── variables.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── mysql_to_postgres_incremental_stack/ │ ├── .gitignore │ ├── README.md │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── setup.py ├── outdoor_activity_analytics_recreation/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analyses/ │ │ │ ├── campsite_availability_analysis.py │ │ │ ├── campsite_type_analysis.py │ │ │ ├── count_recareas_by_activity_analysis.py │ │ │ └── most_common_activities_in_recareas_analysis.py │ │ ├── dbt_project.yml │ │ ├── models/ │ │ │ ├── marts/ │ │ │ │ ├── campsite_availability_over_time.sql │ │ │ │ ├── campsite_type_counts.sql │ │ │ │ ├── count_recarea_by_activity_analysis.sql │ │ │ │ └── most_common_activities_in_recareas.sql │ │ │ ├── sources/ │ │ │ │ └── recreation_source.yml │ │ │ └── staging/ │ │ │ ├── stg_activities.sql │ │ │ ├── stg_campsites.sql │ │ │ ├── stg_facilities.sql │ │ │ └── stg_recreationareas.sql │ │ └── profiles.yml │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── postgres_data_replication/ │ ├── .gitignore │ ├── README.md │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── setup.py ├── postgres_snowflake_integration/ │ ├── .gitignore │ ├── README.md │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── setup.py ├── postgres_to_mysql_migration/ │ ├── .gitignore │ ├── README.md │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ └── setup.py ├── pyairbyte_notebooks/ │ ├── AI ChatBot - 1.0 Launch Demo.ipynb │ ├── Chatoverpolygonstockdata_langchain.ipynb │ ├── PyAirbyte_Apify_Demo.ipynb │ ├── PyAirbyte_Basic_Features_Demo.ipynb │ ├── PyAirbyte_CoinAPI_Demo.ipynb │ ├── PyAirbyte_Document_Creation_RAG_with_Langchain_Demo.ipynb │ ├── PyAirbyte_GA4_Demo.ipynb │ ├── PyAirbyte_Github_Incremental_Demo.ipynb │ ├── PyAirbyte_Postgres_Custom_Cache_Demo.ipynb │ ├── PyAirbyte_Shopify_Demo.ipynb │ ├── PyAirbyte_Snowflake_Cortex_Github.ipynb │ ├── PyAirbyte_Snowflake_Custom_Cache_Demo.ipynb │ ├── PyAirbyte_as_an_Orchestrator_Demo.ipynb │ ├── RAG_using_github_pyairbyte_chroma.ipynb │ ├── README.md │ ├── rag_using_gdrive_pyairbyte_pinecone.ipynb │ ├── rag_using_github_pyairbyte_weaviate.ipynb │ ├── rag_using_gitlab_pyairbyte_qdrant.ipynb │ ├── rag_using_jira_pyairbyte_pinecone.ipynb │ ├── rag_using_s3_pyairbyte_pinecone.ipynb │ ├── rag_using_shopify_pyairbyte_langchain.ipynb │ ├── rag_with_fb_marketing_milvus_lite.ipynb │ ├── rag_with_pyairbyte_and_milvus_lite.ipynb │ ├── sentiment_analysis_airbyte_gsheets_snowflakecortex.ipynb │ └── using_langchain_airbyte_package.ipynb ├── satisfaction_analytics_zendesk_support/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── analysis/ │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── models/ │ │ │ ├── marts/ │ │ │ │ ├── analyze_satisfaction_score_over_time.sql │ │ │ │ ├── avarage_satisfaction_rating.sql │ │ │ │ ├── feedback_analysis_for_low_score.sql │ │ │ │ └── trend_analysis_by_score.sql │ │ │ ├── sources/ │ │ │ │ └── zendesk_support_sources.yml │ │ │ └── staging/ │ │ │ ├── stg_brands.sql │ │ │ ├── stg_groups.sql │ │ │ ├── stg_organizations.sql │ │ │ ├── stg_satisfaction_ratings.sql │ │ │ ├── stg_tags.sql │ │ │ ├── stg_ticket_audits.sql │ │ │ ├── stg_ticket_comments.sql │ │ │ ├── stg_ticket_fields.sql │ │ │ ├── stg_ticket_forms.sql │ │ │ ├── stg_ticket_metric_events.sql │ │ │ ├── stg_ticket_metrics.sql │ │ │ ├── stg_tickets.sql │ │ │ └── stg_users.sql │ │ ├── profiles.yml │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ ├── setup.py │ │ ├── tmp3ks7pwhz/ │ │ │ └── storage/ │ │ │ ├── ad21fadd-c131-4a7c-98a7-fa5ad3a929de/ │ │ │ │ └── compute_logs/ │ │ │ │ ├── mdvhnoik.complete │ │ │ │ ├── mdvhnoik.err │ │ │ │ ├── mdvhnoik.out │ │ │ │ ├── uzgmeijp.complete │ │ │ │ ├── uzgmeijp.err │ │ │ │ └── uzgmeijp.out │ │ │ └── f7507115-918d-443f-ab91-a065e84fa403/ │ │ │ └── compute_logs/ │ │ │ ├── aeebjmfa.complete │ │ │ ├── aeebjmfa.err │ │ │ ├── aeebjmfa.out │ │ │ ├── zqbkkiww.complete │ │ │ ├── zqbkkiww.err │ │ │ └── zqbkkiww.out │ │ └── tmpb3ctnsbk/ │ │ └── storage/ │ │ ├── 0bc4e544-546d-44df-b79c-e75413c56ecb/ │ │ │ └── compute_logs/ │ │ │ ├── xozgecli.complete │ │ │ ├── xozgecli.err │ │ │ ├── xozgecli.out │ │ │ ├── yyxjctam.complete │ │ │ ├── yyxjctam.err │ │ │ └── yyxjctam.out │ │ └── 1eac78ed-12d1-4147-9c48-79b27dd586ed/ │ │ └── compute_logs/ │ │ ├── iqvvuhde.complete │ │ ├── iqvvuhde.err │ │ ├── iqvvuhde.out │ │ ├── izklbfmq.complete │ │ ├── izklbfmq.err │ │ └── izklbfmq.out │ └── setup.py ├── shopping_cart_analytics_shopify/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── dbt_project.yml │ │ ├── models/ │ │ │ ├── marts/ │ │ │ │ ├── abandoned_checkout_ratio.sql │ │ │ │ ├── location_based_abandoned_checkouts.sql │ │ │ │ ├── most_abandoned_products.sql │ │ │ │ └── time_based.sql │ │ │ ├── sources/ │ │ │ │ └── shopify_source.yml │ │ │ └── staging/ │ │ │ └── stg_abandoned_checkouts.sql │ │ └── profiles.yml │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── ticket_volume_analytics_zendesk_support/ │ ├── .gitignore │ ├── README.md │ ├── dbt_project/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── dbt_project.yml │ │ ├── models/ │ │ │ ├── marts/ │ │ │ │ ├── busier_day_of_week_analysis.sql │ │ │ │ ├── pattern_and_trend_analysis.sql │ │ │ │ ├── seasonal_analysis.sql │ │ │ │ ├── ticket_priority_analysis.sql │ │ │ │ ├── ticket_resolution_time_analysis.sql │ │ │ │ ├── ticket_source_analysis.sql │ │ │ │ └── ticket_volume_analysis.sql │ │ │ ├── sources/ │ │ │ │ └── zendesk_support_sources.yml │ │ │ └── staging/ │ │ │ ├── stg_schedules.sql │ │ │ ├── stg_ticket_metrics.sql │ │ │ ├── stg_tickets.sql │ │ │ └── stg_users.sql │ │ ├── profiles.yml │ │ ├── snapshots/ │ │ │ └── .gitkeep │ │ └── tests/ │ │ └── .gitkeep │ ├── infra/ │ │ ├── .gitignore │ │ └── airbyte/ │ │ ├── .terraform.lock.hcl │ │ ├── main.tf │ │ ├── provider.tf │ │ └── variables.tf │ ├── orchestration/ │ │ ├── orchestration/ │ │ │ ├── __init__.py │ │ │ ├── assets.py │ │ │ ├── constants.py │ │ │ ├── definitions.py │ │ │ └── schedules.py │ │ ├── pyproject.toml │ │ └── setup.py │ └── setup.py ├── vector_store_integration/ │ ├── AI_assistant_streamlit_app/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app.py │ │ └── requirements.txt │ ├── RAG_using_PGVector.ipynb │ ├── RAG_using_Snowflake_Cortex.ipynb │ └── RAG_using_Vectara.ipynb └── weather_data_stack/ ├── .gitignore ├── README.md ├── dbt_project/ │ ├── .gitignore │ ├── README.md │ ├── analyses/ │ │ └── .gitkeep │ ├── dbt_project.yml │ ├── macros/ │ │ └── .gitkeep │ ├── models/ │ │ ├── marts/ │ │ │ └── historial_weather_trends.sql │ │ ├── sources/ │ │ │ └── weatherstack_source.yml │ │ └── staging/ │ │ └── stg_current_weather.sql │ ├── profiles.yml │ ├── seeds/ │ │ └── .gitkeep │ ├── snapshots/ │ │ └── .gitkeep │ └── tests/ │ └── .gitkeep ├── orchestration/ │ ├── orchestration/ │ │ ├── __init__.py │ │ ├── assets.py │ │ ├── constants.py │ │ ├── definitions.py │ │ └── schedules.py │ ├── pyproject.toml │ └── setup.py └── setup.py