Skip to content

Commit 6ce7183

Browse files
authored
Merge pull request #24 from montara-io/updated-logo
Updated logo
2 parents 701f816 + 367d76a commit 6ce7183

File tree

36 files changed

+181
-187
lines changed

36 files changed

+181
-187
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# 🚀 dbt Command Center
1+
# 🚀 dbt Command Center
22

3-
Never drill through endless dbt logs again. dbt Command Center is a local web application that provides a user-friendly interface to monitor and manage dbt runs.
3+
Never drill through endless dbt logs again. dbt Command Center is a local web application that provides a user-friendly interface to monitor and manage dbt runs.
44

55
<div>
66
<a href="https://www.loom.com/share/99c67a35a912476aaa0742b176abf2f1">
@@ -15,7 +15,7 @@ Never drill through endless dbt logs again. dbt Command Center is a local web ap
1515
## Getting started
1616

1717
- Install the package with `pip install dbt-command-center`
18-
- Run `dcc` instead of `dbt` to start the dbt Command Center. You can pass the same arguments as you would to `dbt run`. For example `dcc run --models my_model --full-refresh`.
18+
- Run `dcc` instead of `dbt` to start the dbt Command Center. You can pass the same arguments as you would to `dbt run`. For example `dcc run --models my_model --full-refresh`.
1919

2020
## Contributing
2121

@@ -35,4 +35,4 @@ Never drill through endless dbt logs again. dbt Command Center is a local web ap
3535

3636
### Anonymous usage data
3737

38-
We strive to make dbt Command Center better by understanding how it is used. To do this, we collect anonymous usage data. This does not include any personal information or data from your dbt runs. You can opt-out by setting the environment variable `DCC_DISABLE_ANALYTICS` to `true`.
38+
We strive to make dbt Command Center better by understanding how it is used. To do this, we collect anonymous usage data. This does not include any personal information or data from your dbt runs. You can opt-out by setting the environment variable `DCC_DISABLE_ANALYTICS` to `true`.

dbt_command_center/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def main():
2222
"""
2323
)
2424
return
25-
print("🚀 dbt Command Center is starting", flush=True)
25+
print("🚀 dbt Command Center is starting", flush=True)
2626

2727
dbt_command = sys.argv[1]
2828
dbt_full_command = ["dbt"] + sys.argv[1:] + ["--target-path", MONTARA_TARGET]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="dbt-command-center",
5-
version="0.1.21",
5+
version="0.1.22",
66
author="Montara team",
77
author_email="[email protected]",
88
description="Stop drilling through dbt logs and start visualizing them",

web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
href="https://app.montara.io/favicon.ico"
99
/>
1010
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
11-
<title>dbt Command Center by Montara</title>
11+
<title>dbt Command Center by Montara</title>
1212
<link rel="preconnect" href="https://fonts.googleapis.com" />
1313
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
1414
<link

web/public/logo.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.
3 KB
Loading

web/public/vite.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

web/src/Main.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ import {
99
initialMainState,
1010
mainReducer,
1111
} from "./main.redux";
12+
import { white } from "./constants/colors";
1213

1314
type MainContextType = [MainState, Dispatch<MainAction>];
1415

1516
const StyledBody = styled.div`
1617
height: 100vh;
1718
width: 100%;
18-
background: #fff;
19-
padding: 0.5rem 1rem 0rem 1rem;
19+
background: ${white};
2020
overflow: hidden;
2121
`;
2222

web/src/RunDetails/RunDetailsModels.tsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,7 @@ function RunDetailsModels({
9090
return (
9191
<div className="m-flex-align-center">
9292
{!!materialization && (
93-
<Icon
94-
size={SMALL_FONT_SIZE}
95-
iconName={
96-
materialization === ModelMatrializationType.view
97-
? "eye"
98-
: materialization ===
99-
ModelMatrializationType.incremental
100-
? "chart-line"
101-
: "table"
102-
}
103-
/>
93+
<Icon size={SMALL_FONT_SIZE} iconName="table" />
10494
)}
10595

10696
<Typography>

web/src/RunDetails/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ import RunLog from "./RunLog";
3636
const StyledRunDetails = styled.div`
3737
min-height: 95vh;
3838
font-family: var(--font-family);
39+
padding: ${DEFAULT_SPACING};
3940
.m-scorecards-wrapper {
4041
display: flex;
4142
align-items: center;

0 commit comments

Comments
 (0)