You have two options. Codespaces is easiest — nothing to install.
- On the repo page, click Code > Codespaces > Create codespace.
- Wait for it to build. Dependencies install automatically.
- You get a full VS Code in your browser. Done.
You need Python 3.11+.
pip install -r llm_query/requirements.txtdbt reads its profile from the dbt_project folder, so run commands from there:
cd dbt_project
dbt seed --profiles-dir .dbt seed loads the four CSV files into a local DuckDB database (analytics.duckdb). DuckDB runs inside the process — no server, no password.
You should see four seeds load, the largest being 23,296 observation rows.
Next: 03-staging-models.md