Skip to content

Commit

Permalink
Merge pull request #300 from fishtown-analytics/fishtown-docalytics
Browse files Browse the repository at this point in the history
change analyst-collective to fishtown-analytics
  • Loading branch information
drewbanin authored Feb 27, 2017
2 parents 36b26d8 + 1f3500e commit fcf5e63
Show file tree
Hide file tree
Showing 10 changed files with 76 additions and 76 deletions.
128 changes: 64 additions & 64 deletions CHANGELOG.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ dbt (data build tool) helps analysts write reliable, modular code using a workfl

| service | development | master |
| --- | --- | --- |
| CircleCI| [![CircleCI](https://circleci.com/gh/analyst-collective/dbt/tree/development.svg?style=svg)](https://circleci.com/gh/analyst-collective/dbt/tree/development) | [![CircleCI](https://circleci.com/gh/analyst-collective/dbt/tree/master.svg?style=svg)](https://circleci.com/gh/analyst-collective/dbt/tree/master) |
| CircleCI| [![CircleCI](https://circleci.com/gh/fishtown-analytics/dbt/tree/development.svg?style=svg)](https://circleci.com/gh/fishtown-analytics/dbt/tree/development) | [![CircleCI](https://circleci.com/gh/fishtown-analytics/dbt/tree/master.svg?style=svg)](https://circleci.com/gh/fishtown-analytics/dbt/tree/master) |
| AppVeyor | [![AppVeyor](https://ci.appveyor.com/api/projects/status/v01rwd3q91jnwp9m/branch/development?svg=true)](https://ci.appveyor.com/project/DrewBanin/dbt/branch/development) | [![AppVeyor](https://ci.appveyor.com/api/projects/status/v01rwd3q91jnwp9m/branch/master?svg=true)](https://ci.appveyor.com/project/DrewBanin/dbt/branch/master) |

[Coverage](https://circleci.com/api/v1/project/analyst-collective/dbt/latest/artifacts/0/$CIRCLE_ARTIFACTS/htmlcov/index.html?branch=development)
[Coverage](https://circleci.com/api/v1/project/fishtown-analytics/dbt/latest/artifacts/0/$CIRCLE_ARTIFACTS/htmlcov/index.html?branch=development)

## Code of Conduct

Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ git clone git@github.com:fishtown-analytics/dbt-feedstock.git
2. Update the version and sha256 in `recipe/meta.yml`. To calculate the sha256, run:

```bash
wget https://github.com/analyst-collective/dbt/archive/v{version}.tar.gz
wget https://github.com/fishtown-analytics/dbt/archive/v{version}.tar.gz
openssl sha256 v{version}.tar.gz
```

Expand Down
4 changes: 2 additions & 2 deletions dbt/task/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
# uncomment below and add real repositories to add dependencies to this project
#repositories:
# - "git@github.com:analyst-collective/repo-name-1"
# - "git@github.com:analyst-collective/repo-name-2"
# - "git@github.com:[your-org]/[some-repo-1]"
# - "git@github.com:[your-org]/[some-repo-2]"
"""

GIT_IGNORE = """
Expand Down
2 changes: 1 addition & 1 deletion dbt/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

COOKIE_PATH = os.path.join(os.path.expanduser('~'), '.dbt/.user.yml')

BASE_URL = 'https://raw.githubusercontent.com/analyst-collective/'\
BASE_URL = 'https://raw.githubusercontent.com/fishtown-analytics/'\
'dbt/master/events/schemas/com.fishtownanalytics/'

INVOCATION_SPEC = BASE_URL + "invocation_event.json"
Expand Down
2 changes: 1 addition & 1 deletion dbt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from urllib2 import urlopen

REMOTE_VERSION_FILE = \
'https://raw.githubusercontent.com/analyst-collective/dbt/' \
'https://raw.githubusercontent.com/fishtown-analytics/dbt/' \
'master/.bumpversion.cfg'


Expand Down
2 changes: 1 addition & 1 deletion docs/about/viewpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> In 2015-2016, a team of folks at RJMetrics had the opportunity to observe, and participate in, a significant evolution of the analytics ecosystem. The seeds of dbt were conceived in this environment, and the viewpoint below was written to reflect what we had learned and how we believed the world should be different. **dbt is our attempt to address the workflow challenges we observed, and as such, this viewpoint is the most foundational statement of the dbt project's goals.**
> The remainder of this document is largely unedited from [the original post](https://medium.com/analyst-collective/building-a-mature-analytics-workflow-the-analyst-collective-viewpoint-7653473ef05b).
> The remainder of this document is largely unedited from [the original post](https://medium.com/analyst-collective/building-a-mature-analytics-workflow-the-fishtown-analytics-viewpoint-7653473ef05b).
## Analytics today

Expand Down
4 changes: 2 additions & 2 deletions docs/guide/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ credentials!** All private credentials belong in `~/.dbt/profiles.yml`.
## Configuring a project

The `dbt_project.yml` file is responsible for configuring how dbt operates on your project.
You can find a sample `dbt_project.yml` file [here](https://github.com/analyst-collective/dbt/blob/master/sample.dbt_project.yml).
You can find a sample `dbt_project.yml` file [here](https://github.com/fishtown-analytics/dbt/blob/master/sample.dbt_project.yml).


## Configuring profiles

`profiles.yml` defines how dbt connects to your data warehouse(s). You can find a sample
`profiles.yml` file [here](https://github.com/analyst-collective/dbt/blob/master/sample.profiles.yml).
`profiles.yml` file [here](https://github.com/fishtown-analytics/dbt/blob/master/sample.profiles.yml).
By default, dbt expects this file to be located at `~/.dbt/profiles.yml`, but this location can be changed
on the command line with the `--profiles-dir` option.
2 changes: 1 addition & 1 deletion docs/guide/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Data integrity in analytic databases is empirically often of lower quality than

Tests are run with `dbt test`. See [usage](usage/) for more information on the dbt command structure. `dbt test` will report back the success or failure of each test, and in case of failure will report the number of failing rows.

Schema tests are declared in a `schema.yml` file that can be placed at any level within your models folders. See the sample provided [here](https://github.com/analyst-collective/dbt/blob/master/sample.schema.yml). There are four primary schema validations provided.
Schema tests are declared in a `schema.yml` file that can be placed at any level within your models folders. See the sample provided [here](https://github.com/fishtown-analytics/dbt/blob/master/sample.schema.yml). There are four primary schema validations provided.

### Not null

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
description="Data build tool for Analyst Collective",
author="Analyst Collective",
author_email="admin@analystcollective.org",
url="https://github.com/analyst-collective/dbt",
url="https://github.com/fishtown-analytics/dbt",
packages=find_packages(),
test_suite='test',
entry_points={
Expand Down

0 comments on commit fcf5e63

Please sign in to comment.