From 33b662f7379699553293b4e3b284ffa1013502e6 Mon Sep 17 00:00:00 2001 From: George Myrianthous Date: Thu, 2 Mar 2023 12:24:58 +0000 Subject: [PATCH] feat(dbt): Add dbt project file --- LICENSE | 2 +- dbt_project.yml | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 dbt_project.yml diff --git a/LICENSE b/LICENSE index 261eeb9..8cd80bf 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright [2023] [Giorgos Myrianthous] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/dbt_project.yml b/dbt_project.yml new file mode 100644 index 0000000..75559c8 --- /dev/null +++ b/dbt_project.yml @@ -0,0 +1,26 @@ +name: 'jaffle_shop' + +config-version: 2 +version: '0.1' + +profile: 'jaffle_shop' + +model-paths: ["models"] +seed-paths: ["seeds"] +test-paths: ["tests"] +analysis-paths: ["analysis"] +macro-paths: ["macros"] + +target-path: "target" +clean-targets: + - "target" + - "dbt_modules" + - "logs" + +require-dbt-version: [">=1.0.0", "<2.0.0"] + +models: + jaffle_shop: + materialized: table + staging: + materialized: view \ No newline at end of file