diff --git a/dbt_project.yml b/dbt_project.yml index 9d9745b..7306f09 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -23,3 +23,10 @@ target-path: "target" # directory which will store compiled SQL files clean-targets: # directories to be removed by `dbt clean` - "target" - "dbt_packages" + +seeds: + +database: tania_test + +schema: IM + +models: + +databricks_compute: "Compute1" diff --git a/models/staging/jaffle_shop/stg_orders.sql b/models/staging/jaffle_shop/stg_orders.sql index db546f3..0314866 100644 --- a/models/staging/jaffle_shop/stg_orders.sql +++ b/models/staging/jaffle_shop/stg_orders.sql @@ -4,4 +4,5 @@ select order_date, status -from tania_test.default.jaffle_shop_orders \ No newline at end of file + +from tania_test.default.jaffle_shop_orders diff --git a/models/test.sql b/models/test.sql new file mode 100644 index 0000000..ea98f02 --- /dev/null +++ b/models/test.sql @@ -0,0 +1 @@ +SELECT 1 as id \ No newline at end of file diff --git a/seeds/some_seed.csv b/seeds/some_seed.csv new file mode 100644 index 0000000..df29098 --- /dev/null +++ b/seeds/some_seed.csv @@ -0,0 +1,25 @@ +LaboratoryName,LaboratoryType,LIMSType,Comments +Construction Sciences Pty Ltd,External,Comply - In House,All Construction Sciences Laboratory +ASCT Sydney,External,Xcel Based (In-House),All ASCT Laboratories +ASCT Illawara,External,Xcel Based (In-House), +ASCT Northern Rivers,External,Xcel Based (In-House), +Douglas Partners,External,Geotester, +Rose Testing Pty Ltd,External,Geotester, +ADE Consulting,External,Geotester, +Coffey Testing Pty Ltd,External,Geotester/SpectraQEST, +K&H Geotechnical,External,SpectraQEST,Looking to transfer to Geotester +Robert Carr & Associates,External,Geotester, +Ground Technologies,External,Geotester, +AMB Geotech SQS Pty Ltd,External,Geotester, +Alliance Geotechnical Pty Ltd,External,Geotester, +Ballina Laboratory,Internal,Geotester, +Grafton Laboratory,Internal,Geotester, +Tamworth Laboratory,Internal,Geotester, +Port Macquarie Laboratory,Internal,Geotester, +Russell Vale Laboratory,Internal,Geotester, +Bega Laboratory,Internal,Geotester, +Bowenfels Laboratory,Internal,Geotester, +Parkes Laboratory,Internal,Geotester, +Hunter Region Laboratory,Internal,Geotester, +Wagga Wagga Regional Laboratory,Internal,Geotester, +B2GH Annex,Internal,Geotester, \ No newline at end of file