This repo contains a sample of data generated via the jaffle-shop-generator
that powers the Jaffle Shop dbt tutorial project.
It's a 1 year sample spanning from 2016 to 2017, and includes the following tables:
raw_customers
: customers who have placed ordersraw_orders
: orders placed by customers for food and drinksraw_items
: the individual items that make up an orderraw_products
: the products that are available to orderraw_stores
: the stores where orders are placedraw_supplies
: the supplies that are used to make products
You can clone this repo or download it as a zip file. The data is all CSVs for easy use in dbt. If you're using it with the Jaffle Shop project, just copy the jaffle-data
directory into your jaffle-shop
project directory, then run a dbt seed
. More detailed instructions are in the jaffle-shop
repo.
cp -R jaffle-data /path/to/jaffle-shop/
cd /path/to/jaffle-shop
dbt seed