An open API service indexing awesome lists of open source software.

https://github.com/tinybirdco/ecommerce_data_project

ecommerce data project
https://github.com/tinybirdco/ecommerce_data_project

Last synced: about 1 year ago
JSON representation

ecommerce data project

Awesome Lists containing this project

README

          

Template example for a ecommerce analytics data project using Tinybird

## Install

First install [Tinybird CLI](https://www.tinybird.co/docs/quick-start-cli.html#setting-up-the-cli), you'd need Python 3 installed:

```bash
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:

```bash
tb auth
tb init --git
```

You can append more products data by doing:

```bash
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](https://www.tinybird.co/docs/guides/working-with-git.html).