Use case help

I developed a hugo website that deploys automatically to netlify.

This is already deployed to A.example.com

However I would like to setup a new site, B.example.com
The only folder that will different is the content folder.

SO here’s my question,
How do I use the SAME repo for TWO websites that have the same config/theme but Differing Content folder. I am sure this might be a git branch configuration or something.

Ultimately I would like to push updates of my themes/config files and for both sites to update with the new code, while having different content.

Example: I make a change to the default baseof.html file and it changes for sites A&B while the respective content stays the same.

Any idea how to do this?

BTW: I am using netlify hugo starter.

1 Like

There are sevral ways to do this, but I would go with the “simplest path”, I think. Keep everything in the same repo and switch content folder when running Hugo:

hugo --contentDir=A
3 Likes

Bep, Awesome! Thank you!