Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 663 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 663 Bytes

Jaffle Semantic Layer Testing

This is a repo that is used to test the Semantic Layer

How to use

This project uses devcontainers. Learn how to integrate devcontainers with your IDE here

Local development

This project is optimized for running in a container. If you'd like to use it locally outside of container you'll need to follow the instructions below.

  1. Create a python virtual environment and install the dependencies.
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
  1. Install dbt dependencies and build the dbt project.
dbt deps
dbt build