Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,11 @@ Thumbs.db
target/
dbt_packages/
logs/

# Default .gitignore content added by dbt Cloud# you shouldn't commit these into source control
# these are the default directory names, adjust/add to fit your needs
target/
dbt_packages/
logs/
# end dbt Cloud content
dbt_internal_packages/
Empty file added analyses/.gitkeep
Empty file.
46 changes: 45 additions & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,51 @@
<<<<<<< HEAD

# Name your project! Project names should contain only lowercase characters
# and underscores. A good package name should reflect your organization's
# name or the intended use of these models
name: 'my_new_project'
=======
name: 'flit_data_platform'
>>>>>>> 21cfd7365d4728c068abd0631ad9f9b3eec797b3
version: '1.0.0'
config-version: 2

# This setting configures which "profile" dbt uses for this project.
<<<<<<< HEAD
profile: 'default'

# These configurations specify where dbt should look for different types of files.
# The `model-paths` config, for example, states that models in this project can be
# found in the "models/" directory. You probably won't need to change these!
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]

target-path: "target" # directory which will store compiled SQL files
clean-targets: # directories to be removed by `dbt clean`
- "target"
- "dbt_packages"


# Configuring models
# Full documentation: https://docs.getdbt.com/docs/configuring-models

# In dbt, the default materialization for a model is a view. This means, when you run
# dbt run or dbt build, all of your models will be built as a view in your data platform.
# The configuration below will override this setting for models in the example folder to
# instead be materialized as tables. Any models you add to the root of the models folder will
# continue to be built as views. These settings can be overridden in the individual model files
# using the `{{ config(...) }}` macro.

models:
my_new_project:
# Applies to all files under models/example/
example:
+materialized: table
=======
profile: 'flit_data_platform'

# These configurations specify where dbt should look for different types of files.
Expand Down Expand Up @@ -59,4 +102,5 @@ vars:
free_shipping_threshold_v1_1_1_experiment_start_date: '2024-03-01'
free_shipping_threshold_v1_1_1_experiment_end_date: '2024-03-16'
free_shipping_threshold_v1_1_1_baseline_start_date: '2024-01-01'
free_shipping_threshold_v1_1_1_baseline_end_date: '2024-03-01'
free_shipping_threshold_v1_1_1_baseline_end_date: '2024-03-01'
>>>>>>> 21cfd7365d4728c068abd0631ad9f9b3eec797b3
Empty file added macros/.gitkeep
Empty file.
Empty file added seeds/.gitkeep
Empty file.
Empty file added snapshots/.gitkeep
Empty file.