Skip to content

Commit 205bb67

Browse files
authored
Merge branch 'main' into dynamic-seed-source-configuration
2 parents 1012a46 + a1af363 commit 205bb67

4 files changed

Lines changed: 18 additions & 35 deletions

File tree

File renamed without changes.

README.md

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
[![Apache License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![dbt logo and version](https://img.shields.io/static/v1?logo=dbt&label=dbt-version&message=1.3.x&color=orange)
22

3-
# The Tuva Project Demo
3+
# CMS Synthetic Connector
44

5-
## 🧰 What does this project do?
5+
## Overview
66

7-
This demo provides a quick and easy way to run the Tuva Project.
8-
9-
This project loads the 10k synthetic members and claims from the [CMS Synthetic](https://data.cms.gov/collection/synthetic-medicare-enrollment-fee-for-service-claims-and-prescription-drug-event) dataset as seed files. It then transforms them to the Tuva Project input layer.
10-
11-
To set up the Tuva Project with your own claims data or to better understand what the Tuva Project does, please review the ReadMe in [The Tuva Project](https://github.com/tuva-health/the_tuva_project) package for a detailed walkthrough and setup.
12-
13-
For information on data models and to view the entire DAG check out our dbt [Docs](https://tuva-health.github.io/the_tuva_project_demo/).
7+
This dbt project loads the 10,000 patient synthetic claims dataset from [CMS](https://data.cms.gov/collection/synthetic-medicare-enrollment-fee-for-service-claims-and-prescription-drug-event) and transforms it into the Tuva data model.
148

159
## 🔌 Database Support
1610

@@ -31,18 +25,6 @@ Complete the following steps to configure the project to run in your environment
3125
3. Run `dbt deps` to install the Tuva Project package.
3226
4. Run `dbt build` to run the entire project with the built-in sample data.
3327

34-
## 🙋🏻‍♀️ **How is this project maintained and can I contribute?**
35-
36-
### Project Maintenance
37-
38-
The Tuva Project team maintaining this project **only** maintains the latest version of the project.
39-
We highly recommend you stay consistent with the latest version.
40-
41-
### Contributions
42-
43-
Have an opinion on the mappings? Notice any bugs when installing and running the project?
44-
If so, we highly encourage and welcome feedback! While we work on a formal process in Github, we can be easily reached on our Slack community.
45-
4628
## 🤝 Community
4729

4830
Join our growing community of healthcare data practitioners on [Slack](https://join.slack.com/t/thetuvaproject/shared_invite/zt-16iz61187-G522Mc2WGA2mHF57e0il0Q)!

integration_tests/profiles/bigquery/profiles.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ default:
44
ci:
55
type: bigquery
66
method: service-account
7-
project: dev-ci-testing
8-
keyfile: ./creds.json
7+
project: "{{ env_var('TUVA_BIGQUERY_PROJECT') }}"
8+
keyfile: "{{ env_var('TUVA_BIGQUERY_TOKEN') }}"
99
dataset: connector
1010
threads: 8
1111
timeout_seconds: 300
Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
default: # Replace with your project name
2-
target: ci
1+
default:
32
outputs:
4-
ci:
5-
type: redshift
6-
host: "{{ env_var('REDSHIFT_HOST') }}"
7-
user: "{{ env_var('REDSHIFT_USER') }}"
8-
password: "{{ env_var('REDSHIFT_PASSWORD') }}"
9-
port: 5439
10-
dbname: "{{ env_var('REDSHIFT_DB') }}"
11-
schema: public
12-
threads: 4
3+
dev:
4+
connect_timeout: 120
5+
dbname: dev_ci_testing
6+
host: "{{ env_var('DBT_REDSHIFT_CI_HOST') }}"
137
keepalives_idle: 240
14-
connect_timeout: 10
8+
password: "{{ env_var('DBT_REDSHIFT_CI_PASSWORD') }}"
9+
port: 5439
10+
ra3_node: true
11+
schema: default
12+
threads: 2
13+
type: redshift
14+
user: "{{ env_var('DBT_REDSHIFT_CI_USER') }}"
15+
target: dev

0 commit comments

Comments
 (0)