- Create and active a Python virtual environment by running:
python3 -m venv ./.venv
source ./.venv/bin/activate- Create a
.envfile in the root of the project based on the.env.examplefile. - Install dependencies by running:
pip install -r requirements.txt- Create a SingleStore database
- Create tables by running:
python scripts/create_tables.py- Generate data by running:
python scripts/generate_data.py- Load data into the database by running:
python scripts/load_data.py