The problem I’m having
I am trying to change home page using dbt core.
The context of why I’m trying to do this
I am new to dbt and I am learning how to use dbt docs right now.
What I’ve already tried
I was referring to this YouTube video.
I have created a TPCH_SF_TRANSFORMATIONS/docs/ homepage.md
I am not sure if I need to call this .md file anywhere because the guy on the video dont.
He just runs
dbt docs generate
dbt docs serve
it works for him and home page changes.
But not for me.
Please guide me to how I can fix this.
Homepage.md
{% docs __overview__ %}
## Welcome to TPCH_SF_TRANSFORMATIONS Project!
This project transforms raw TPCH data sourced from Snowflake Sample Data into curated, analytics-ready tables.
### What’s inside:
- Staging models: Clean and rename raw source fields
- Core models: Business logic applied on top of staging models
- Analytics models: Final tables ready for reporting and analysis
### Navigation Tips:
- Use **Project Tab** to explore models organized by directory.
- Use **Database Tab** to explore by schemas like `staging`, `core`, `analytics`.
### Team Info:
- Owner: Data Engineering Team
- Last updated: April 2025
### About dbt
dbt (data build tool) enables analytics engineers to transform data in their warehouse by simply writing select statements.
{% enddocs %}