Template example for a ecommerce analytics data project using Tinybird
First install Tinybird CLI, you'd need Python 3 installed:
python3 -m venv .venv
source .venv/bin/activate
pip install tinybird-cli
Then run the following commands to create all the Data Sources and Pipes and upload some sample data:
tb auth
tb init --git
You can append more products data by doing:
tb datasource replace products https://storage.googleapis.com/tinybird-downloads/data/products.csv
If you want to create the same data project and connect it to Git, please follow this guide.