Skip to content

Commit

Permalink
chore: Update dbt-command-center version to 0.1.16 and add usage inst…
Browse files Browse the repository at this point in the history
…ructions
atardadi committed Jun 3, 2024

Verified

This commit was signed with the committer’s verified signature.
neo1973 Markus Härer
1 parent 4a5e6c1 commit 60d7908
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion dbt_command_center/main.py
Original file line number Diff line number Diff line change
@@ -13,7 +13,17 @@


def main():
print("Starting Montara new", flush=True)
if len(sys.argv) < 2:
print(
"""
Usage: dcc <dbt_command> [args]
For example: dcc run
See documentation at https://github.com/montara-io/dbt-command-center
"""
)
return
print("🚀 dbt Command Center is starting", flush=True)

dbt_command = sys.argv[1]
dbt_full_command = ["dbt"] + sys.argv[1:] + ["--target-path", MONTARA_TARGET]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

setup(
name="dbt-command-center",
version="0.1.15",
version="0.1.16",
author="Montara team",
author_email="support@montara.io",
description="Stop drilling through dbt logs and start visualizing them",

0 comments on commit 60d7908

Please sign in to comment.