-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rohit Chatterjee
committed
Sep 13, 2023
1 parent
6b7d844
commit 494c5f7
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,24 @@ | ||
# dbt-automation | ||
Scripts for dbt automation | ||
|
||
Example usage: | ||
|
||
1. | ||
|
||
python scaffolddbt.py --project-name shridbt \ | ||
--project-dir ../shridbt | ||
2. | ||
|
||
python syncsources.py --schema staging \ | ||
--source-name shrikobo \ | ||
--output-sources-file ../shridbt/models/staging/sources.yml | ||
|
||
3. | ||
|
||
python mknormalized.py --project-dir ../shridbt/ \ | ||
--input-schema staging \ | ||
--output-schema intermediate \ | ||
--output-schema-schemafile schema.yml \ | ||
--sources-file sources.yml | ||
|
||
|