├── .gitignore ├── README.md ├── analyses └── .gitkeep ├── dbt_project.yml ├── macros ├── .gitkeep ├── generate_schema_name.sql └── get_query_comment.sql ├── models ├── example_transformations │ └── intermediate │ │ ├── intermediate.yml │ │ ├── join_omdb_and_tmdb_by_imdb_id.sql │ │ └── join_omdb_and_tmdb_by_tmdb_id.sql └── sources │ ├── .gitkeep │ ├── schema.yml │ ├── sources.yml │ ├── stg_omdb_movies.sql │ ├── stg_tmdb_movies.sql │ └── stg_tmdb_tv_series.sql ├── seeds └── .gitkeep ├── snapshots └── .gitkeep ├── snowflake.log └── tests └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | dbt_packages/ 3 | logs/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/README.md -------------------------------------------------------------------------------- /analyses/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /macros/generate_schema_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/macros/generate_schema_name.sql -------------------------------------------------------------------------------- /macros/get_query_comment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/macros/get_query_comment.sql -------------------------------------------------------------------------------- /models/example_transformations/intermediate/intermediate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/models/example_transformations/intermediate/intermediate.yml -------------------------------------------------------------------------------- /models/example_transformations/intermediate/join_omdb_and_tmdb_by_imdb_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/models/example_transformations/intermediate/join_omdb_and_tmdb_by_imdb_id.sql -------------------------------------------------------------------------------- /models/example_transformations/intermediate/join_omdb_and_tmdb_by_tmdb_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/models/example_transformations/intermediate/join_omdb_and_tmdb_by_tmdb_id.sql -------------------------------------------------------------------------------- /models/sources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/sources/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/models/sources/schema.yml -------------------------------------------------------------------------------- /models/sources/sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/models/sources/sources.yml -------------------------------------------------------------------------------- /models/sources/stg_omdb_movies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/models/sources/stg_omdb_movies.sql -------------------------------------------------------------------------------- /models/sources/stg_tmdb_movies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/models/sources/stg_tmdb_movies.sql -------------------------------------------------------------------------------- /models/sources/stg_tmdb_tv_series.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/models/sources/stg_tmdb_tv_series.sql -------------------------------------------------------------------------------- /seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snapshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snowflake.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paradime-sandbox/paradime-dbt-movie-challenge/HEAD/snowflake.log -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------